I want to upload a big file (about 80M) through the web, but it seems not working. Small file will be OK.
html file:
<input type="hidden" name="MAX_FILE_SIZE" value="128000000" />
php.ini:
file_uploads = On
upload_max_filesize = 128M
max_input_time = 60
memory_limit = 128M
max_execution_time = 30
post_max_size = 128M
httpd.conf:
LimitRequestBody 128000000
For the big file, the uploading seems stop about 10 seconds, and the file size got from php is 0.
What else do I need to change to support this big file upload? I am using php-5.3.0.tar.bz2, httpd-2.2.13.tar.bz2.
Thanks!
Yong