From 54e23f5fd288a2f2c210075a228978d5ee6e2cc2 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Tue, 27 Mar 2007 22:14:49 +0000 Subject: [PATCH] Improve documentation for $wgMaxUploadSize --- includes/DefaultSettings.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 /** -- 2.20.1