sudo apt-get install phpmyadminWhen I open http://localhost/phpmyadmin, it says ".../phpmyadmin/ was not found on this server".
How to fix it?
Firstly, open /etc/apache2/apache2.conf
You can open it by pressing Alt+F2, then type
gksudo gedit /etc/apache2/apache2.confNote: if gksudo is not installed, you can install it using "sudo apt-get install gksu".
Then go to the end of the file and type
Include /etc/phpmyadmin/apache.confSave the file, then restart the apache using this command
sudo /etc/init.d/apache2 restartDone.
2 comments:
thanks, it works. :)
Post a Comment