php.ini settings change not taking effect for large file uploads

Posted by user51347 on Server Fault See other posts from Server Fault or by user51347
Published on 2013-07-01T15:22:03Z Indexed on 2013/07/01 16:22 UTC
Read the original article Hit count: 125

Filed under:
|
|

My server was just reprovisioned, and my application which uploads large (100M+) files now breaks upon re-installation.

the symptom is quite consistent : smaller files (8mb in my tests) upload just fine. Larger files cut off at quite close to the same point every time given a particular computer. a file that fails at 26% will fail at just about the same every time. One that takes 1:40s to fail will take within 2 seconds of that every time, before failure.

I have set my php.ini settings extravagently :

post_max_size = 512M upload_max_filesize = 512M max_input_time = 3600 max_execution_time 3600

Is there possibly a setting at the Apache Level which would override PHP?

© Server Fault or respective owner

Related posts about apache2

Related posts about php