Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-mw committed May 17, 2022
1 parent 4ac2a43 commit 4569719
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/MicroweberPackages/Install/resources/views/install.php
Expand Up @@ -438,6 +438,11 @@ function (data) {
$server_check_errors['pdo'] = 'The PDO MYSQL PHP extension must be loaded';
}

if (!class_exists('\ZipArchive') ) {
$check_pass = false;
$server_check_errors['zip'] = 'The Zip PHP extension must be loaded';
}

if (extension_loaded('gd') && function_exists('gd_info')) {
} else {
$check_pass = false;
Expand Down

0 comments on commit 4569719

Please sign in to comment.