What about adding this in errorChecker.php ???
Code: Select all
//=========new zip check by nik ============
$checks[] = array($title,$span,$text,$correct);
$title = "Zip support ";
if( extension_loaded("zip")){
$span = $correctDiv;
$text = "zip support is enabled on your server. ";
$correct = "";
}
else{
$span = $incorrectDiv;
$text = "zip is not enabled on your server.
This is likely to cause issues with the <auto update> function.";
$correct = "You need to enable this on your server.
If you are running your own server, change this in the php.ini,
if external webhosting, ask your provider about this,
or enable \'Zip support\' in your Web Control Panel";
}

