Within my project, in .htaccess
, I have set the following settings for a company file-sharing system:
php_value memory_limit 6000M
php_value post_max_size 6000M
php_value upload_max_filesize 6000M
php_value max_execution_time 6000000
php_value session.gc_maxlifetime 360000
But I have received some complaints about downloads of "large" files (over 120MB) that simply download to exactly 120mb and appear "Unsuccessful" in the browser. If the person clicks on the restart it continues from the point that stopped, but more or less the same size to again.
Is there any additional configuration I need to do, other than those shown?