Skip to content

Commit 0b4ec66

Browse files
authored
Prepare for php8.4 support (hestiacp#4631)
1 parent aeb5be3 commit 0b4ec66

File tree

6 files changed

+7
-3
lines changed

6 files changed

+7
-3
lines changed

bin/v-restart-service

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ for service in $service_list; do
7575
"$service" = "php8.0-fpm" -o \
7676
"$service" = "php8.1-fpm" -o \
7777
"$service" = "php8.2-fpm" -o \
78+
"$service" = "php8.3-fpm" -o \
79+
"$service" = "php8.4-fpm" -o \
7880
"$service" = "proftpd" -o \
7981
"$service" = "ssh" -o \
8082
"$service" = "fail2ban" ]; then

bin/v-run-cli-cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ if [ "$basecmd" != 'ps' -a \
7171
"$basecmd" != 'php8.1' -a \
7272
"$basecmd" != 'php8.2' -a \
7373
"$basecmd" != 'php8.3' -a \
74+
"$basecmd" != 'php8.4' -a \
7475
"$basecmd" != 'php' -a \
7576
"$basecmd" != "wp" -a \
7677
"$basecmd" != 'composer' ]; then

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ VERBOSE='no'
3333
# Define software versions
3434
HESTIA_INSTALL_VER='1.9.0~alpha'
3535
# Supported PHP versions
36-
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2" "8.3")
36+
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2" "8.3" "8.4")
3737
# One of the following PHP versions is required for Roundcube / phpmyadmin
3838
multiphp_required=("7.3" "7.4" "8.0" "8.1" "8.2" "8.3")
3939
# Default PHP version if none supplied

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ VERBOSE='no'
3333
# Define software versions
3434
HESTIA_INSTALL_VER='1.9.0~alpha'
3535
# Supported PHP versions
36-
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2" "8.3")
36+
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2" "8.3" "8.4")
3737
# One of the following PHP versions is required for Roundcube / phpmyadmin
3838
multiphp_required=("7.3" "7.4" "8.0" "8.1" "8.2" "8.3")
3939
# Default PHP version if none supplied

install/upgrade/upgrade.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ UPGRADE_RESTART_SERVICES='true'
3535
#######################################################################################
3636

3737
# Supported PHP versions
38-
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2" "8.3")
38+
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1" "8.2" "8.3" "8.4")
3939

4040
#######################################################################################
4141
####### 3rd Party Software Updates #######

web/edit/server/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"php-8.1",
4141
"php-8.2",
4242
"php-8.3",
43+
"php-8.4",
4344
];
4445
sort($v_php_versions);
4546

0 commit comments

Comments
 (0)