I'm having problems with the file upload utility in my PHP application. When sending large files (9 MB +) on the form, I get a very strange behavior: the POST data that I included in the form disappears, including the file information.
I already increased all the PHP restrictions that I could (time limit, maximum input time, maximum message size, memory limit and maximum upload file size), and I still cannot get the correct behavior. I tried replacing regular HTTP forms with a flash solution (SWFUpload, www.swfupload.org), still the same behavior.
I tried several files with the same sizes and definitely not a specific problem with the file. I debugged POST files sent using Firebug, and the correct variables are still present in the header along with the file.
What can be done here?
javascript html php forms uploading
Dfkimera
source share