Skip to content

Instantly share code, notes, and snippets.

View sleepm's full-sized avatar

王登辉 sleepm

View GitHub Profile
@sleepm
sleepm / update_phpmyadmin.sh
Created January 27, 2019 11:13
manually update phpMyAdmin
#!/bin/bash
wget https://files.phpmyadmin.net/phpMyAdmin/"$1"/phpMyAdmin-"$1"-all-languages.zip
unzip phpMyAdmin-"$1"-all-languages.zip
if [ -f 'phpmyadmin/config.inc.php' ]; then
cp phpmyadmin/config.inc.php phpMyAdmin-"$1"-all-languages/
fi
rm -rf phpmyadmin
mv phpMyAdmin-"$1"-all-languages phpmyadmin
chown -R www-data:www-data phpmyadmin