简体   繁体   English

Apache下载php文件而不是执行它们

[英]Apache downloading php files instead of executing them

I am trying to install phpmyadmin in my Ubuntu Server and when I try to access via browser to it, a php file downloads instead of displaying the web page. 我试图在我的Ubuntu Server中安装phpmyadmin,当我尝试通过浏览器访问它时,会下载一个php文件而不是显示网页。 I placed a phpinfo testfile in /var/www and it is working fine. 我在/ var / www中放置了一个phpinfo测试文件,并且工作正常。

I have already commented lines in php5.conf file: 我已经注释了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>

I am using Apache/2.4.6 and Ubuntu Server 13.10 我正在使用Apache / 2.4.6和Ubuntu Server 13.10

如果您将phpmyadmin安装为应用程序,则尝试从官方网站下载源代码并手动运行它(复制到目录/ var / www并在apache config中添加VirtualHost设置)比尝试确定问题要容易得多。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM