From 7e928ade22faffee9fa757259651b421b8a62fdd Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Sun, 8 Sep 2019 11:25:24 -0400 Subject: [PATCH] Increase assignment upload limit from 4MB to 20MB (#21589) Due to a request from a Master's partner who reports that the current 4MB limit is not enough for their degree programs. EDUCATOR-4635 --- lms/envs/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/envs/common.py b/lms/envs/common.py index 8c0c6a2c85..caa0c7bb45 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -736,7 +736,7 @@ AUTHENTICATION_BACKENDS = [ 'bridgekeeper.backends.RulePermissionBackend', ] -STUDENT_FILEUPLOAD_MAX_SIZE = 4 * 1000 * 1000 # 4 MB +STUDENT_FILEUPLOAD_MAX_SIZE = 20 * 1000 * 1000 # 20 MB MAX_FILEUPLOADS_PER_INPUT = 20 # Set request limits for maximum size of a request body and maximum number of GET/POST parameters. (>=Django 1.10)