Skip to content
Snippets Groups Projects

Issue #3163123: Error: Class 'ZipArchive' not found in Drupal\Core\Archiver\Zip->__construct() (line 30 of core/lib/Drupal/Core/Archiver/Zip.php).

Closed Issue #3163123: Error: Class 'ZipArchive' not found in Drupal\Core\Archiver\Zip->__construct() (line 30 of core/lib/Drupal/Core/Archiver/Zip.php).
Closed spokje requested to merge issue/drupal-3163123:3163123-9.3-error-class-ziparchive into 9.3.x
Files
3
@@ -1362,3 +1362,13 @@ function system_page_top() {
}
}
}
/**
* Implements hook_archiver_info_alter().
*/
function system_archiver_info_alter(&$info) {
if (!class_exists(\ZipArchive::class)) {
// PHP Zip extension is missing.
unset($info['Zip']);
}
}
Loading