From eabf6c042ec367680921712f15007ae5a86a4d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9drix?= <cedric@abonnel.fr> Date: Sun, 23 Mar 2025 21:35:15 +0100 Subject: [PATCH] ajout de sqlite3 --- scripts/server-httpd/install-php8-3.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/server-httpd/install-php8-3.sh b/scripts/server-httpd/install-php8-3.sh index 9c44c5f..9eac376 100644 --- a/scripts/server-httpd/install-php8-3.sh +++ b/scripts/server-httpd/install-php8-3.sh @@ -64,6 +64,7 @@ PHP_MODULES=( php${PHP_VERSION}-gmp php${PHP_VERSION}-apcu php${PHP_VERSION}-opcache + php${PHP_VERSION}-sqlite3 ) # Vérification MySQL / MariaDB @@ -110,10 +111,6 @@ else systemctl restart php$PHP_VERSION-fpm || { echo -e "${RED}Échec du redémarrage de PHP-FPM${RESET}"; exit 1; } fi -# Vérification des modules PHP installés -echo -e "${GREEN}Modules PHP installés :${RESET}" -php -m - # Test de la configuration Apache if systemctl is-active --quiet apache2; then echo -e "${YELLOW}Vérification du support de PHP par Apache...${RESET}"