0

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 :)

Eric Carvalho
  • 54,385
  • 3
    Did you really typed http:/localhost/phpmyadmin? It should be http://localhost..., with 2 slashes before localhost. – Eric Carvalho Mar 03 '13 at 15:35
  • 2
    Also, please verify that phpmyadmin is indeed installed on your local machine and not somewhere else. Localhost only works for your local machine. –  Mar 03 '13 at 15:41

1 Answers1

0

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
shgnInc
  • 4,003