Skip to content

Instantly share code, notes, and snippets.

@Ahed91
Created July 10, 2017 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ahed91/7ff8cbcb06a3243bab30081808ba7242 to your computer and use it in GitHub Desktop.
Save Ahed91/7ff8cbcb06a3243bab30081808ba7242 to your computer and use it in GitHub Desktop.
Install last phpmyadmin on any linux server (Ubuntu, Debian, ....)
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