How to increase download time?

1

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?

    
asked by anonymous 30.11.2016 / 18:18

1 answer

3

I recently had the same problem of downloading the files stopped at 120mb and only resolved after changing these settings in Apache httpd.conf:

AcceptFilter http none 
AcceptFilter https none 
EnableSendfile off 
EnableMMAP off

Reference: link

    
30.11.2016 / 18:43