Merge pull request #33644 from nextcloud/backport/32216/stable24

[stable24] Respect user settings in php.ini if they are big enough
This commit is contained in:
blizzz 2022-08-23 10:29:36 +02:00 committed by GitHub
commit fcff68a5c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -623,16 +623,23 @@ class OC {
throw new \RuntimeException('Could not set timezone to UTC');
}
//try to configure php to enable big file uploads.
//this doesn´t work always depending on the web server and php configuration.
//Let´s try to overwrite some defaults anyway
//try to set the maximum execution time to 60min
if (strpos(@ini_get('disable_functions'), 'set_time_limit') === false) {
@set_time_limit(3600);
//try to configure php to enable big file uploads.
//this doesn´t work always depending on the webserver and php configuration.
//Let´s try to overwrite some defaults if they are smaller than 1 hour
if (intval(@ini_get('max_execution_time') ?? 0) < 3600) {
@ini_set('max_execution_time', strval(3600));
}
if (intval(@ini_get('max_input_time') ?? 0) < 3600) {
@ini_set('max_input_time', strval(3600));
}
//try to set the maximum execution time to the largest time limit we have
if (strpos(@ini_get('disable_functions'), 'set_time_limit') === false) {
@set_time_limit(max(intval(@ini_get('max_execution_time')), intval(@ini_get('max_input_time'))));
}
@ini_set('max_execution_time', '3600');
@ini_set('max_input_time', '3600');
self::setRequiredIniValues();
self::handleAuthHeaders();