phpmyadmin显示PHP代码,但实际的应用程序代码工作正常

时间:2015-07-16 07:07:36

标签: php apache phpmyadmin

我在AWS服务器上托管我的应用程序。我在其上配置了Virtualmin并创建了一个新的虚拟服务器 - mydomain.td.lr,并创建了一个用户--mydomain。

我也从virtualmin界面为它配置了虚拟主机。

<VirtualHost *:80>
SuexecUserGroup "#500" "#500"
ServerName mydomain.td.lr
ServerAlias www.mydomain.td.lr
ServerAlias webmail.mydomain.td.lr
DocumentRoot /var/www/public_html/mydomain
ErrorLog /var/log/virtualmin/mydomain.td.lr_error_log
CustomLog /var/log/virtualmin/mydomain.td.lr_access_log combined
ScriptAlias /cgi-bin/ /home/mydomain/cgi-bin/
ScriptAlias /awstats/ /home/mydomain/cgi-bin/
DirectoryIndex index.html index.htm index.php index.php4 index.php5
<Directory /var/www/public_html/mydomain>
Options -Indexes +IncludesNOEXEC +SymLinksIfOwnerMatch +ExecCGI
allow from all
AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
Require all granted
AddType application/x-httpd-php .php
AddHandler fcgid-script .php
AddHandler fcgid-script .php5
FCGIWrapper /home/mydomain/fcgi-bin/php5.fcgi .php
FCGIWrapper /home/mydomain/fcgi-bin/php5.fcgi .php5
</Directory>
<Directory /home/mydomain/cgi-bin>
allow from all
AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
Require all granted
</Directory>
RewriteEngine on
RewriteCond %{HTTP_HOST} =webmail.mydomain.td.lr
RewriteRule ^(.*) https://mydomain.td.lr:20000/ [R]
RemoveHandler .php
RemoveHandler .php5
php_admin_value engine Off
IPCCommTimeout 31
FcgidMaxRequestLen 1073741824
Alias /dav /home/mydomain/public_html
Alias /pipermail /var/lib/mailman/archives/public
<Location /dav>
DAV on
AuthType Basic
AuthName "mydomain.td.lr"
AuthUserFile /home/mydomain/etc/dav.digest.passwd
Require valid-user
ForceType text/plain
Satisfy All
RemoveHandler .php
RemoveHandler .php5
RewriteEngine off
</Location>
<Files awstats.pl>
AuthName "mydomain.td.lr statistics"
AuthType Basic
AuthUserFile /home/mydomain/.awstats-htpasswd
require valid-user
</Files>
RedirectMatch /cgi-bin/mailman/([^/\.]*)(.cgi)?(.*) https://mydomain.td.lr:10000/virtualmin-mailman/unauthenticated/$1.cgi$3
RedirectMatch /mailman/([^/\.]*)(.cgi)?(.*) https://mydomain.td.lr:10000/virtualmin-mailman/unauthenticated/$1.cgi$3
</VirtualHost>

这附加到httpd.conf

当我在mydomain.td.lr打开我的应用程序时,应用程序显示出来;但是当我打开phpmhyadmin时,我在那里看到了一个PHP代码。

另外,当我看到phpmyadmin页面的源代码时,所有的php代码都被注释掉了,而html中的代码是php正在显示

我在服务器上重新安装了phpmyadmin,但仍然没有成功。 配置出了什么问题???

3 个答案:

答案 0 :(得分:1)

删除这两行对我来说很重要。

RemoveHandler .php
RemoveHandler .php5

答案 1 :(得分:0)

您是否在apache.conf文件夹中存在/etc/phpmyadmin进行了修改?

我认为您还必须在phpmyadmin apache.conf中输入并确保php.ini文件中没有注释短标记。

希望这会有所帮助。

答案 2 :(得分:0)

就我而言,它是

php_admin_value engine Off

在httpd.config虚拟主机部分。

禁用后,

# php_admin_value engine Off

一切(虚拟网站,phpMyAdmin)工作正常。

考虑安全问题,但可以在自定义模板或默认模板中启用mod_php&gt; Virtualmin服务器模板下的Apache_website