From b17540254a63f00a0f0cd66abb0abf5c44806421 Mon Sep 17 00:00:00 2001 From: Sophia Atkinson Date: Mon, 16 Jan 2023 20:39:43 -0800 Subject: [PATCH] Didn't mean to delete this --- scripts/pmaupdate.sh | 59 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 scripts/pmaupdate.sh diff --git a/scripts/pmaupdate.sh b/scripts/pmaupdate.sh new file mode 100644 index 0000000..6409ab5 --- /dev/null +++ b/scripts/pmaupdate.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +while true +do + read -r -p "Would you like to Update phpMyAdmin? [Y/n] " input + + case $input in + [yY][eE][sS]|[yY]) + break + ;; + [nN][oO]|[nN]) + break + ;; + *) + echo "That wasn't an option..." + ;; + esac +done +PHP_VER="8.2" +sudo apt update && apt upgrade -y +sudo add-apt-repository --yes ppa:ondrej/php && apt install libapache2-mod-php$PHP_VER php$PHP_VER-fpm -y +sudo systemtl stop apache2 +sudo apt install apache2 -y +sudo apt install phpmyadmin php-mbstring php-zip php-gd php-json php-curl -y +sudo phpenmod mbstring +sudo a2dismod php$PHP_VER +sudo a2dismod mpm_prefork +sudo a2enmod mpm_event +sudo a2enmod proxy +sudo a2enmod proxy_fcgi +sudo a2enconf php$PHP_VER-fpm +sudo systemctl restart php$PHP_VER-fpm +systemctl reload apache2 +sudo systemctl enable apache2 +sudo apt autoremove -y +PMA_VER="5.2.0" +sudo rm -rf /usr/share/phpmyadmin.bak +sudo mv /usr/share/phpmyadmin/ /usr/share/phpmyadmin.bak +sudo mkdir /usr/share/phpmyadmin/ +sudo wget https://files.phpmyadmin.net/phpMyAdmin/$PMA_VER/phpMyAdmin-"$PMA_VER"-all-languages.tar.gz -P /usr/share/phpmyadmin/ +sudo tar xzf /usr/share/phpmyadmin/phpMyAdmin-"$PMA_VER"-all-languages.tar.gz -C /usr/share/phpmyadmin/ +sudo mv /usr/share/phpmyadmin/phpMyAdmin-"$PMA_VER"-all-languages/* /usr/share/phpmyadmin +sudo mkdir /usr/share/phpmyadmin/tmp/ && chmod -R 777 /usr/share/phpmyadmin/tmp/ +sudo rm -rf /usr/share/phpmyadmin/phpMyAdmin-"$PMA_VER"-all-languages /usr/share/phpmyadmin/phpMyAdmin-"$PMA_VER"-all-languages.tar.gz +sudo systemctl restart apache2 +echo -e "==================================================================" +publicipaddress=$(curl -sS --connect-timeout 10 -m 60 https://ipv4.icanhazip.com/ || curl -sS --connect-timeout 10 -m 60 https://api.ipify.org ) +intenalip=$(ip addr | grep -E -o '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | grep -E -v "^127\.|^255\.|^0\." | head -n 1) + echo "phpMyAdmin Should be available at http://${intenalip}/phpmyadmin" + echo "Or If you are using a VPS at http://${publicipaddress}/phpmyadmin" +echo -e "==================================================================" + + + + + + + +