Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I've installed phpmyadmin I've even reconfigured it on my ubuntu I went to localhost/phpmyadmin and 94.249.188.109/phpmyadmin and it still says "Not Found" PLEASE Help ME!

share|improve this question

2 Answers

Then you haven't installed it correctly. Try installing with this command sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin

If that doesn't work then try this fix: sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf sudo /etc/init.d/apache2 reload

You should be ready dude !

share|improve this answer

Install phpmyadmin using

sudo apt-get install libapache2-mod-auth-mysql phpmyadmin

Then go to http://localhost/phpmyadmin/. Just in case that does not work, go to http://127.0.0.1/phpmyadmin/.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.