Last active
November 14, 2015 14:26
-
-
Save Shaltz/b73f7cfd36ca98046a2d to your computer and use it in GitHub Desktop.
Revisions
-
Shaltz revised this gist
Jun 4, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # Install packages sudo apt-get install apache2 mysql-server mysql-client php5 php5-mysql php5-intl libapache2-mod-php5 phpmyadmin # Access phpMyAdmin http://serverIP/phpmyadmin/ -
Shaltz created this gist
Jun 4, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ # Install packages sudo apt-get install apache2 mysql-server mysql-client php5 php5-mysql libapache2-mod-php5 phpmyadmin # Access phpMyAdmin http://serverIP/phpmyadmin/ # If doesn't work, edit sudo nano /etc/apache2/apache2.conf # and add to the bottom of the file Include /etc/phpmyadmin/apache.conf # restart apache 2 server service apache2 restart # or on ubuntu 15.04 sudo systemctl restart apache2