From: moodler Date: Thu, 15 May 2003 11:15:55 +0000 (+0000) Subject: New override for Apache's LimitRequestBody parameter which may limit files. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=ce729f49c8e39e84e8a632aae8a053d6537d9f22;p=moodle.git New override for Apache's LimitRequestBody parameter which may limit files. --- diff --git a/lib/htaccess b/lib/htaccess index 3d3fbc95cf..35609588ca 100644 --- a/lib/htaccess +++ b/lib/htaccess @@ -34,6 +34,12 @@ php_value short_open_tag On php_value session.auto_start Off php_value session.bug_compat_warn Off +### Fourthly, sometimes Apache limits the size of uploaded files +### (this is a separate limit to the one in PHP, see below). +### The setting here turns off this limitation + +LimitRequestBody 0 + ### These are optional - you may not want to override php.ini ### To enable them, remove the leading hash (#)