On 01/13/2014 11:05 AM, MOKRANI Rachid wrote: > Hi, > > With DL, I need to transfer files larger than 4.4Go (iso DVD) > > I put in my /etc/php.ini > > upload_max_filesize = 4900M > > post_max_size = 5000M > > In my httpd.conf I set : > > LimitRequestBody 0 > > My config. > > CentOS 5.5 x64 > > But it doesn't work. > > Is it a technical apache limitation ? how to get around this limitation > ?
There's no inherent file size limit in DL itself. Apache 2.2 seem to have introduced "large file support with request bodies >2gb", but the documentation for 2.2 and 2.4: http://httpd.apache.org/docs/current/mod/core.html#limitrequestbody reads as if 2gb is still the maximum body size it can accept by default (0 sets it to 2gb anyway). Try explicitly putting 5138022400 in the LimitRequestBody. I also found this nice summary: http://www.motobit.com/help/scptutl/pa98.htm About the limit imposed by the browsers themselves (too bad is not really up to date).