Viewing 1 replies (of 1 total)
  • Plugin Author David Anderson

    (@davidanderson)

    Try creating a file wp-content/mu-plugins/gzopen.php (you will need to create the directory wp-content/mu-plugins if it does not already exist), with these contents:

    if (!function_exists('gzopen') && function_exists('gzopen64')) {
    function gzopen($filename , $mode = 'r', $use_include_path = 0 )
    {
    return gzopen64($filename , $mode, $use_include_path);
    }
    }

    That ought to provide you with a temporary workaround.

    Best wishes,
    David

Viewing 1 replies (of 1 total)
  • The topic ‘Zlib problem in Ubuntu 14.04 – Backups won't work’ is closed to new replies.