Reputation:
I have installed phyMyAdmin on my Ubuntu 12.04 using sudo apt-get.. I configured the Apache2 Server as it was given in the Documentation The problem I am facing is that when i take "http://localhost/phyMyAdmin"
nothing is displayed in the browser,instead it downloads a php file. Why is this occuring?How can I resolve this problem?
Upvotes: 0
Views: 114
Reputation: 181
This might help you
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf
sudo service apache2 restart
Upvotes: 0
Reputation: 1310
You're missing PHP.
From the terminal:
sudo apt-get install php5 php5-mysql
Then restart Apache:
sudo service apache2 restart
You can then navigate to http://localhost/phyMyAdmin
and it'll work.
Upvotes: 1