Hi,
I have already posted this in the FileFile project area but hope some of you here might also have some insight into this...
I have implemented FileField on a site where the owner has to upload very large files, currently looking at 500MB with potential for a size increase later.
My local php.ini has the following entries...
post_max_size=10000M
upload_max_filesize=5000M
max_execution_time=120
max_input_time=120
memory_limit = 512M
These settings are correctly reported in phpinfo()
I've even allocated 512M to apache and the server has 2GB available to it.
however when even uploading a 107MB file I get the following error message...
The file in the whatever field was unable to be uploaded.
I have tried in IE 7, FF3 and Chrome, the client has already tried on Mac Safari. I'm using the PRIVATE file system.
Please, if anyone has any pointers on this can they suggest where I should start looking for this.
Thanks,
Keith
Comments
Its probably the time limits
Its probably the time limits you're using. That number is in seconds, so you're giving your server a total of 2 minutes to upload 100+MB's.
- Ryan