Take post_max_size into account when calculating maximum sizes.

This commit is contained in:
moodler
2003-12-02 14:34:24 +00:00
parent 811a6f64c5
commit 316ebf78a3
+12 -4
View File
@@ -1096,14 +1096,15 @@ function valid_uploaded_file($newfile) {
function get_max_upload_file_size($sitebytes=0, $coursebytes=0, $modulebytes=0) {
/// Returns the maximum size for uploading files
/// There are six possible upload limits:
/// There are seven possible upload limits:
///
/// 1) in Apache using LimitRequestBody (no way of checking or changing this)
/// 2) in php.ini for 'upload_max_filesize' (can not be changed inside PHP)
/// 3) in .htaccess for 'upload_max_filesize' (can not be changed inside PHP)
/// 4) by the Moodle admin in $CFG->maxbytes
/// 5) by the teacher in the current course $course->maxbytes
/// 6) by the teacher for the current module, eg $assignment->maxbytes
/// 4) in php.ini for 'post_max_size' (can not be changed inside PHP)
/// 5) by the Moodle admin in $CFG->maxbytes
/// 6) by the teacher in the current course $course->maxbytes
/// 7) by the teacher for the current module, eg $assignment->maxbytes
///
/// These last two are passed to this function as arguments (in bytes).
/// Anything defined as 0 is ignored.
@@ -1114,6 +1115,13 @@ function get_max_upload_file_size($sitebytes=0, $coursebytes=0, $modulebytes=0)
}
$minimumsize = get_real_size($filesize);
if ($postsize = ini_get("post_max_size")) {
$postsize = get_real_size($postsize);
if ($postsize < $minimumsize) {
$minimumsize = $postsize;
}
}
if ($sitebytes and $sitebytes < $minimumsize) {
$minimumsize = $sitebytes;
}