Skip to content
Snippets Groups Projects
Commit 10c5178e authored by Frank Karlitschek's avatar Frank Karlitschek
Browse files

check for php modules

parent bf3248be
No related branches found
No related tags found
No related merge requests found
......@@ -242,7 +242,14 @@ class OC_Util {
$errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY_ROOT.') not writable by ownCloud<br/>','hint'=>$permissionsHint);
}
//TODO: check for php modules
// check if all required php modules are present
if(!class_exists('ZipArchive')){
$errors[]=array('error'=>'PHP module ZipArchive not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
}
if(!function_exists('mb_detect_encoding')){
$errors[]=array('error'=>'PHP module mb multibyte not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
}
return $errors;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment