【问题标题】:Apache downloading php files instead of executing themApache下载php文件而不是执行它们
【发布时间】:2014-06-07 22:10:44
【问题描述】:

我正在尝试在我的 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

【问题讨论】:

  • 我们需要更多信息:它是虚拟主机还是子目录?给我们apache中phpmyadmin路径的配置。

标签: php apache phpmyadmin ubuntu-server


【解决方案1】:

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

【讨论】:

  • 这样做并且工作正常,我知道问题与安装路径有关,似乎 Apache 不允许我在 /var/www 文件夹之外执行 php 脚本。但这现在对我有用,谢谢!
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2017-07-28
  • 2013-08-27
相关资源
最近更新 更多