From c897d91b3e520852bca02531c0bd199243678e4e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 30 Oct 2020 13:56:47 +0100 Subject: [PATCH] Add 10mb upload limit --- LocalSettings.php.tmpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LocalSettings.php.tmpl b/LocalSettings.php.tmpl index 0594cc3..45c4e95 100644 --- a/LocalSettings.php.tmpl +++ b/LocalSettings.php.tmpl @@ -210,3 +210,6 @@ $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg', 'doc', 'xls', 'mpp', 'pdf', 'ppt', 'tiff', 'bmp', 'docx', 'xlsx', 'pptx', 'ps', 'odt', 'ods', 'odp', 'odg' ); + +$wgUploadSizeWarning = 1000000000; +$wgMaxUploadSize = 1000000000;