What is the largest filesize php and all it's function can handle?
Like if I have a message board and all data gets posted to a .txt file, how big will it be before it slows down to slow rate. (slow being what you think it is)
You can adjust the max file size in th php.ini file
Mine was set to 5Mb and I changed it to 8Mb to successfully uploaded my file.
I once strip a txt file of 60M and it was pretty quickly, I think is the algorithm from behind, it depends on what do u need to do with that file, I was striping all the email address format from that file ...
Provided it was built with largefile support or on a 64-bit OS, at least several terabytes.
Otherwise, 2 gigabytes.
Mark