I am trying to run phpmyadmin on ubuntu 9.04
I installed phpmyadmin through apt-get install and configured it to use apache-2

php files can be run correctly
mysql server is set up properly

I can't figure out what's wrong...
Can somebody help?

link|improve this question

80% accept rate
Where is the actual phpMyAdmin folder? – random Oct 11 '09 at 11:20
feedback

1 Answer

up vote 1 down vote accepted

run

ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf
/etc/init.d/apache2 restart

and use your web browser to go to http://server.address/phpmyadmin/

to be on the safe side - configure it manually to one non-default vhost and even better - set apache rules to limit access to it only from trusted subnet.

link|improve this answer
Thanks a lot.. It works !!! I wonder why apt doesn't handles this... – rrh Oct 26 '09 at 11:45
feedback

Your Answer

 
or
required, but never shown

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