Le script cherche une fonction nommée “gzopen”.
Autre option : dans le config.php de l'application, ajouter :
if (extension_loaded('zlib')) {
if (!function_exists('gzopen') && function_exists('gzopen64')) {
function gzopen($filename, $mode, $use_include_path = 0) {
return gzopen64( $filename, $mode, $use_include_path );
}
}
}