From 402cb33cfe4b976fdc97ed6c1002857a7701aa41 Mon Sep 17 00:00:00 2001 From: Sophia Atkinson Date: Wed, 19 Oct 2022 09:34:30 -0700 Subject: [PATCH] Update 'scripts/pmainstall.sh' --- scripts/pmainstall.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/scripts/pmainstall.sh b/scripts/pmainstall.sh index b5c1a53..a18f932 100644 --- a/scripts/pmainstall.sh +++ b/scripts/pmainstall.sh @@ -1,18 +1,19 @@ #!/bin/bash while [ "$go" != 'y' ] && [ "$go" != 'n' ]; do - read -p "Would you like to uninstall phpMyAdmin? (y/n) " go + read -p "Would you like to install phpMyAdmin? (y/n) " go done if [ "$go" == 'n' ]; then exit fi -sudo apt update && apt upgrade -y -sudo apt install apache2 -y -sudo apt install software-properties-common -y +apt update && apt upgrade -y +sudo apt install software-properties-common sudo apt install phpmyadmin php-mbstring php-zip php-gd php-json php-curl -y -sudo add-apt-repository ppa:ondrej/php +sudo add-apt-repository ppa:ondrej/php && apt install libapache2-mod-php8.1 +sudo a2enmod php8.1 +sudo echo "Include /etc/phpmyadmin/apache.conf" >> /etc/apache2/apache2.conf sudo phpenmod mbstring sudo systemctl restart apache2