diff --git a/config/config.inc.php.dist b/config/config.inc.php.dist index f0d5b274299bbc519e251d7183037b1d5ac713aa..d7a0f83df5c45be4c77bed457971300f4e6e62af 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 ) );