class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
Thank you for your help. It was occuring on three servers. It was NOT the fault of the class, it was a form problem. We had never had to upload such large files before, so our old class was fine until now.
We replaced it with this one... but the problem was that we were not specifying MAX_FILE_SIZE as hidden input in the upload form...
We added the following hidden input line to the form and eliminated the problems!
It seems like this is required whatever your php.ini says, otherwise the $_FILES array is empty for larger files that the default except for the file name.
We replaced it with this one... but the problem was that we were not specifying MAX_FILE_SIZE as hidden input in the upload form...
We added the following hidden input line to the form and eliminated the problems!
It seems like this is required whatever your php.ini says, otherwise the $_FILES array is empty for larger files that the default except for the file name.
Great piece of work you have done here.
Regards!