Greetings all-
I have a form that allows a user to upload a zip file. Over the years the program has worked fine, but these zip files keep getting larger and larger. Now the file is at 75MG. When loading this file in testing, it stops after about 60 seconds. I'm getting a message on the webpage: The connection to the server was reset while the page was loading.
I added code to stop the script before the actual processing of the file contents. I print out the name of the uploaded file and the file size then exit the program. I can print out the lines for smaller files, but not the 75MB file. grrrr!
In php.ini, I set:
upload_max_filesize 80M
php_value post_max_size 80M
I also added to my script:
set_time_limit(180);
I used a window on the server to view memory usage while the upload runs and the process shows 0.7 in MEMORY.
At this point I'm not sure what the problem is, memory, time-out, other(?). Any ideas of what I could try would be appreciated.
Cheers!
JC