我们有一个亚马逊linux服务器。它正在运行php 5.3我们想要更新到5.6,看它是否能解决我们的wordpress安装上的插件问题。我安装了php 5.6,现在我遇到了回到phpMyAdmin和我们的wordpress网站的问题,我认为因为数据库问题我没有加载。
当我去/ phpMyAdmin时,我得到禁止
您无权访问此服务器上的/ phpMyAdmin。
我在这里发现了一些线程,提示诸如在phpMyAdmin.conf文件中放置以下内容:
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
#Require ip 127.0.0.1
#Require ip ::1
Require all granted
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>
我试过这个,我也从'my static ip'添加了Allow。我还没有重启httpd。正在发生的另一件事是,当我访问应该是我们的wordpress网站时,我正在获取Amazon Linux AMI测试页面,我不确定这些是否是同一个问题,但我认为它是相关的。
有问题的网站是calendar.childmags.com.au
答案 0 :(得分:0)
我认为你必须脱离严格模式。对于您可以使用的临时解决方案 对于所有DB:_
SET @@global.sql_mode=''
对于当前的数据库: -
SET sql_mode = ''