我已经使用sudo apt-get在我的Ubuntu 12.04上安装了phyMyAdmin ..我在文档中给出了Apache2服务器。我面临的问题是,当我带"http://localhost/phyMyAdmin"
时,没有显示任何内容浏览器,而不是下载一个PHP文件。为什么会发生这种情况?我该如何解决这个问题?
答案 0 :(得分:1)
你错过了PHP。
从终端:
sudo apt-get install php5 php5-mysql
然后重启Apache:
sudo service apache2 restart
然后,您可以导航到http://localhost/phyMyAdmin
,这样就可以了。
答案 1 :(得分:0)
这可能对您有所帮助
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf
sudo service apache2 restart