我正在尝试在我的Ubuntu服务器中安装phpmyadmin,当我尝试通过浏览器访问它时,会下载一个php文件而不是显示网页。我在/ var / www中放置了一个phpinfo测试文件,它工作正常。
我已经在php5.conf文件中注释过行:
<FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch ".+\.phps$">
SetHandler application/x-httpd-php-source
# Deny access to raw php sources by default
# To re-enable it's recommended to enable access to the files
# only in specific virtual host or directory
Order Deny,Allow
Deny from all
</FilesMatch>
# Deny access to files without filename (e.g. '.php')
<FilesMatch "^\.ph(p[345]?|t|tml|ps)$">
Order Deny,Allow
Deny from all
</FilesMatch>
# Running PHP scripts in user directories is disabled by default
#
# To re-enable PHP in user directories comment the following lines
# (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
# prevents .htaccess files from disabling it
#<IfModule mod_userdir.c>
# <Directory /home/*/public_html>
# php_admin_value engine Off
# </Directory>
#</IfModule>
我正在使用Apache / 2.4.6和Ubuntu Server 13.10
答案 0 :(得分:1)
如果你安装phpmyadmin作为应用程序,那么尝试从官方网站下载源代码并手动运行(复制到你的目录/ var / www并在apache配置中添加VirtualHost设置)这比尝试决定更容易你的问题。