Skip to content

Commit

Permalink
Issue #165 Proper check for memory_limit config (#180)
Browse files Browse the repository at this point in the history
* fix #165 : Handle shorthand notation for PHP memory_limit check

* fix config default memory threshold.
  • Loading branch information
lvlte committed Feb 15, 2023
1 parent 364c056 commit 15cc6f5
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/config_default.php
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ public function __construct() {

$this->default->session['memorylimit'] = array(
'desc'=>'Set the PHP memorylimit warning threshold.',
'default'=>24);
'default'=>'24M');

$this->default->session['timelimit'] = array(
'desc'=>'Set the PHP timelimit.',
Expand Down
36 changes: 29 additions & 7 deletions lib/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,16 +333,38 @@ 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'))
system_message(array(
'title'=>_('Memory Limit low.'),
'body'=>sprintf('Your php memory limit is low - currently %s, you should increase it to atleast %s. This is normally controlled in /etc/php.ini.',
ini_get('memory_limit'),$config->getValue('session','memorylimit')),
'type'=>'error'));

$limit = memory_str_to_int(ini_get('memory_limit'));
if ($limit != -1) {
$threshold = memory_str_to_int($config->getValue('session','memorylimit'));
if ($limit < $threshold) {
system_message(array(
'title' => _('Memory Limit low.'),
'body' => sprintf('Your php memory limit is low - currently %s (%s), you should increase it to atleast %s (%s). This is normally controlled in /etc/php.ini.',
ini_get('memory_limit'), $limit, $config->getValue('session','memorylimit'), $threshold),
'type'=>'error'
));
}
}
return $config;
}

/**
* Converts shorthand memory notation string to an integer that represents the
* given amount in bytes (ie. "128M" -> 134217728).
*
* @param string|int $value
* @return int
*/
function memory_str_to_int($value) {
$value = trim(strtolower($value));
if (intval($value) > 0 && preg_match('/^(\d+)([kmg])?$/', $value, $match, PREG_UNMATCHED_AS_NULL)) {
[$int, $mod] = [intval($match[1]), $match[2]];
$pow = [NULL => 0, 'k' => 1, 'm' => 2, 'g' => 3][$mod];
return $int * 1024 ** $pow;
}
return intval($value);
}

/**
* Commands available in the control_panel of the page
*
Expand Down

0 comments on commit 15cc6f5

Please sign in to comment.