From: Aryeh Gregor Date: Tue, 27 Mar 2007 22:14:49 +0000 (+0000) Subject: Improve documentation for $wgMaxUploadSize X-Git-Tag: 1.31.0-rc.0~53573 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=54e23f5fd288a2f2c210075a228978d5ee6e2cc2;p=lhc%2Fweb%2Fwiklou.git Improve documentation for $wgMaxUploadSize --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 8e2c202cd5..4a2babc63f 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -372,7 +372,11 @@ $wgSharedUploadDBprefix = ''; $wgCacheSharedUploads = true; /** Allow for upload to be copied from an URL. Requires Special:Upload?source=web */ $wgAllowCopyUploads = false; -/** Max size for uploads, in bytes */ +/** + * Max size for uploads, in bytes. Currently only works for uploads from URL + * via CURL (see $wgAllowCopyUploads). The only way to impose limits on + * normal uploads is currently to edit php.ini. + */ $wgMaxUploadSize = 1024*1024*100; # 100MB /**