Browse Source

check if PHP mod GD is installed

remotes/origin/stable4
Arthur Schiwon 14 years ago
parent
commit
57b8ff890c
  1. 3
      lib/util.php

3
lib/util.php

@ -240,6 +240,9 @@ class OC_Util {
if(!function_exists('json_encode')){ if(!function_exists('json_encode')){
$errors[]=array('error'=>'PHP module JSON is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); $errors[]=array('error'=>'PHP module JSON is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
} }
if(!function_exists('imagepng')){
$errors[]=array('error'=>'PHP module GD is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
}
return $errors; return $errors;
} }

Loading…
Cancel
Save