Skip to content

Instantly share code, notes, and snippets.

@Shaltz
Last active November 14, 2015 14:26
Show Gist options
  • Select an option

  • Save Shaltz/b73f7cfd36ca98046a2d to your computer and use it in GitHub Desktop.

Select an option

Save Shaltz/b73f7cfd36ca98046a2d to your computer and use it in GitHub Desktop.

Revisions

  1. Shaltz revised this gist Jun 4, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.txt
    Original 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 libapache2-mod-php5 phpmyadmin
    sudo apt-get install apache2 mysql-server mysql-client php5 php5-mysql php5-intl libapache2-mod-php5 phpmyadmin

    # Access phpMyAdmin
    http://serverIP/phpmyadmin/
  2. Shaltz created this gist Jun 4, 2015.
    17 changes: 17 additions & 0 deletions gistfile1.txt
    Original 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