diff options
| author | Thomas Hackl <hackl@data-quest.de> | 2023-05-09 16:06:05 +0200 |
|---|---|---|
| committer | Thomas Hackl <hackl@data-quest.de> | 2023-05-09 16:06:05 +0200 |
| commit | 99856d0436c716b3415725538c2bf48075478f30 (patch) | |
| tree | 93695c164131b04400f2dff8ead8af16c5b904c9 /config | |
| parent | 635365c92d3051ba6d9bf922d40f614c2e4ed5ef (diff) | |
adjust upload sizes, fixes #2623vips-modification-feedback
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.inc.php.dist | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/config/config.inc.php.dist b/config/config.inc.php.dist index f0d5b27..d7a0f83 100644 --- a/config/config.inc.php.dist +++ b/config/config.inc.php.dist @@ -110,12 +110,12 @@ $SEM_TREE_TYPES[0] = array("name" => "", "editable" => true); //default type, mu $UPLOAD_TYPES=array( "default" => array( "type"=>"allow", "file_types" => array ("exe"), - "file_sizes" => array ( "root" => 7 * 1048576, - "admin" => 7 * 1048576, - "dozent" => 7 * 1048576, - "tutor" => 7 * 1048576, - "autor" => 7 * 1048576, - "nobody" => 1.38 * 1048576 + "file_sizes" => array ( "root" => 250 * 1048576, + "admin" => 250 * 1048576, + "dozent" => 100 * 1048576, + "tutor" => 50 * 1048576, + "autor" => 50 * 1048576, + "nobody" => 1 * 1048576 ) ), // rules for futher course-types can be added below (please adhere exactly to the structure given above) @@ -152,11 +152,11 @@ $UPLOAD_TYPES["attachments"] = $UPLOAD_TYPES["personalfiles"] = array( "type" => "allow", "file_types" => array ("exe"), - "file_sizes" => array ( "root" => 7 * 1048576, - "admin" => 7 * 1048576, - "tutor" => 7 * 1048576, - "dozent" => 7 * 1048576, - "autor" => 7 * 1048576, + "file_sizes" => array ( "root" => 250 * 1048576, + "admin" => 250 * 1048576, + "dozent" => 100 * 1048576, + "tutor" => 50 * 1048576, + "autor" => 50 * 1048576, "nobody" => 0 ) ); |
