Created
July 10, 2017 08:43
-
-
Save Ahed91/7ff8cbcb06a3243bab30081808ba7242 to your computer and use it in GitHub Desktop.
Install last phpmyadmin on any linux server (Ubuntu, Debian, ....)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /var/www/html # web root | |
mkdir temp_dir | |
cd temp_dir | |
wget https://files.phpmyadmin.net/phpMyAdmin/4.7.2/phpMyAdmin-4.7.2-english.tar.xz | |
tar xf phpMyAdmin-4.7.2-english.tar.xz | |
uuidgen # this will generate unique uuid copy_it | |
mv phpMyAdmin-4.7.2-english/ ../uniqe_uuid | |
cd .. | |
rm -rf temp_dir/ | |
cd uniqe_uuid/ | |
mv config.sample.inc.php config.inc.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment