Skip to content

Commit c86be69

Browse files
committed
Update PHP and latest Joomla changes
Update PHP and latest Joomla changes
1 parent 8a87dae commit c86be69

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

scripts/install_joomla.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ else
1818
cd /var/www/html
1919
fi
2020

21-
wget https://downloads.joomla.org/cms/joomla5/5-1-1/Joomla_5-1-1-Stable-Full_Package.tar.gz
22-
tar zxvf Joomla_5-1-1-Stable-Full_Package.tar.gz
23-
rm -rf Joomla_5-1-1-Stable-Full_Package.tar.gz
21+
wget https://downloads.joomla.org/cms/joomla5/5-3-1/Joomla_5-3-1-Stable-Full_Package.tar.gz
22+
tar zxvf Joomla_5-3-1-Stable-Full_Package.tar.gz
23+
rm -rf Joomla_5-3-1-Stable-Full_Package.tar.gz
24+
25+
2426
if [[ $use_shared_storage == "true" ]]; then
2527
cp ${joomla_shared_working_dir}/htaccess.txt ${joomla_shared_working_dir}/.htaccess
2628
chown apache:apache -R ${joomla_shared_working_dir}

scripts/install_php74.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ echo "MySQL Shell successfully installed !"
1818

1919
if [[ $(uname -r | sed 's/^.*\(el[0-9]\+\).*$/\1/') == "el8" ]]
2020
then
21-
dnf -y module enable php:remi-8.2
21+
dnf -y module enable php:remi-8.4
2222
dnf -y install php php-cli php-mysqlnd php-zip php-gd php-mcrypt php-mbstring php-xml php-json
2323
else
24-
yum-config-manager --enable remi-php82
24+
yum-config-manager --enable remi-php84
2525
yum -y install php php-cli php-mysqlnd php-zip php-gd php-mcrypt php-mbstring php-xml php-json
2626
fi
2727

0 commit comments

Comments
 (0)