I had install phpmyadmin, using this:
sudo apt-get install phpmyadmin
after that, I wrote in URL:
http:/localhost/phpmyadmin
But it won't work. NOT FOUND, this error appear, so what to do? Any solution would be advisable :)
I had install phpmyadmin, using this:
sudo apt-get install phpmyadmin
after that, I wrote in URL:
http:/localhost/phpmyadmin
But it won't work. NOT FOUND, this error appear, so what to do? Any solution would be advisable :)
are you sure about your web-server state in running or the php application is installed? if not you can do these for them:
sudo /etc/init.d/apache2 status
and
dpkg --get-selections | grep php5
http:/localhost/phpmyadmin
? It should behttp://localhost...
, with 2 slashes before localhost. – Eric Carvalho Mar 03 '13 at 15:35