Hi,
Everytime I try to install a plugin from CB Plugin Management I get a blank screen with this error:
Abort pcl.pclziplib.php : Missing zlib extensions
My server is ubuntu with php version 5.5 and in phpinfo say:
- Registered PHP Streams
https, ftps, compress.zlib, compress.bzip2, php, file, glob, data, http, ftp, phar, zip
- Registered Stream Filters
zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, mcrypt.*, mdecrypt.*
Also in php.ini I have this configured:
zlib.output_compression = On
zlib.output_compression_level = 6
If I try the snipped below it says: ZLIB OK...
Code:
if (function_exists("gzcompress")) {
echo "ZLIB OK";
} else die("zlib missing");
Is there anything else I should do?