Skip to content

Instantly share code, notes, and snippets.

@kikobr
Created July 13, 2013 07:31
Show Gist options
  • Save kikobr/5989807 to your computer and use it in GitHub Desktop.
Save kikobr/5989807 to your computer and use it in GitHub Desktop.
Install XAMPP/LAMPP
1 -> Baixar o Xampp (~/Downloads/xampp-linux-1.8.1.tar.gz)
2 -> Extrair o lampp para a pasta /opt: "sudo tar xvfz xampp-linux-1.8.1.tar.gz -C /opt
"
3 -> Liberar o acesso do PhpMyAdmin:
"gedit /opt/lampp/etc/extra/httpd-xampp.conf"
Colocar um "Require all granted" no final da tag <Directory "/opt/lampp/phpmyadmin">:
<Directory "/opt/lampp/phpmyadmin">
AllowOverride AuthConfig Limit
Order allow,deny
Allow from all
Require all granted
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment