Hack to disable memory limit for values in Gigabytes
This commit is contained in:
parent
58970e1c33
commit
dea7b9074d
@ -326,7 +326,9 @@ function check_config($config_file) {
|
||||
$config->setServers($servers);
|
||||
|
||||
# Check the memory limit parameter.
|
||||
if ((ini_get('memory_limit') > -1) && ini_get('memory_limit') < $config->getValue('session','memorylimit'))
|
||||
$ini_limit = ini_get('memory_limit');
|
||||
$ini_limit = str_replace('G', 1024 * 1024 * 1024 * (int)$ini_limit, $ini_limit);
|
||||
if ((ini_get('memory_limit') > -1) && $ini_limit < $config->getValue('session','memorylimit'))
|
||||
system_message(array(
|
||||
'title'=>_('Memory Limit low.'),
|
||||
'body'=>sprintf('Your php memory limit is low - currently %s, you should increase it to at least %s. This is normally controlled in /etc/php.ini.',
|
||||
|
Loading…
Reference in New Issue
Block a user