I'm uploading large files using JQuery File Upload to an NGINX server with the PHP backend. The upload works for files up to and around 2GB but larger files around 6 or 8GB reach the end but show the following error message
The uploaded file was only partially uploaded

I've updated my nginx.conf:
http {
sendfile on;
keepalive_timeout 65;
server {
...
client_max_body_size 20000000M;
...
}
}
And my php.ini for php-fpm:
memory_limit = 512000000M
upload_max_filesize = 0
post_max_size = 200000M
max_execution_time = 4320000
max_input_time = 4320000
The file upload take under an hour to complete in all cases.
Here is Chrome's Inspect Element output:



ini_set()before the file upload and uncrease limitations forsession.gc_maxlifetime,session.cookie_lifetime,session.cache_expire. Last thing try setting a limitation toupload_max_filesizethat is not unlimited.