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

add check for zlib

parent d4fd47d4
No related branches found
No related tags found
No related merge requests found
......@@ -276,6 +276,9 @@ class OC_Util {
if(!function_exists('imagepng')){
$errors[]=array('error'=>'PHP module GD is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
}
if(!function_exists('gzencode')){
$errors[]=array('error'=>'PHP module zlib is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
}
if(floatval(phpversion())<5.3){
$errors[]=array('error'=>'PHP 5.3 is required.<br/>','hint'=>'Please ask your server administrator to update PHP to version 5.3 or higher. PHP 5.2 is no longer supported by ownCloud and the PHP community.');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment