From e6932f58fb84984a24df2ec3c06b94ec954f0cd6 Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Fri, 23 Feb 2024 16:01:53 -0300 Subject: [PATCH] Update --- objects/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/objects/functions.php b/objects/functions.php index 803ead63..ebb316d1 100644 --- a/objects/functions.php +++ b/objects/functions.php @@ -1262,6 +1262,7 @@ function checkZipArchiveAndVersion() { $cliZipCheckOutput = shell_exec('php -m | grep -i Zip'); if (empty($cliZipCheckOutput)) { + var_dump($cliZipCheckOutput); die("The ZipArchive class is not available in the PHP CLI environment. The CLI is using PHP version $cliVersion. Please install the PHP Zip extension for this version. On Ubuntu, run: 'sudo apt install php" . $cliVersion . "-zip && sudo /etc/init.d/apache2 restart'"); } }