织梦DedeCMS错误(PHP 5.3 and above) Please set 的解决方法

安装了DedeCMS 5.7 SP1,访问后台的时候发现报出错误DedeCMS Error: (PHP 5.3 and above) Please set 'request_order' ini value to include C,G and P (recommended: 'CGP') in php.ini,more...” 

织梦DedeCMS错误

 
解决办法1: 
这个错误其实已经在报错的时候提示解决办法了,在PHP 5.3以上版本,增加了一个request_order配置项,默认值为“GP”。DedeCMS认为默认配置有一定风险,所以建议修改成“CGP”就可以了。 
解决办法: 
找到PHP目录下的php.ini文件,找到request_order配置项,将之前的: 
request_order = "GP" 
修改为: 
request_order = "CGP" 
然后重启Apache或者IIS就可以了。 

解决办法2:(针对虚拟主机用户,无法修改php.ini的用户) 
找到文件: include/common.inc.php 
找到34行:if(strtoupper(ini_get('request_order')) == 'GP') 
                    修改成: 
                    if(strtoupper(ini_get('request_order')) == 'CGP') 

搞定。 

解决办法3: 
在  FTP 里,找到文件夹include,右键编辑“common.inc.php”找到if(version_compare(PHP_VERSION, '5.3.0', '>')) 

      if(strtoupper(ini_get('request_order')) == 'GP') 
      exit('DedeCMS Error: (PHP 5.3 and above) Please set \'request_order\' ini value to include C,G and P (recommended: \'CGP\') in php.ini, 
看到上面代码中的GP了吗?将 'GP’改成 'CGP’ 即可!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/0b1c97b33f270c186a64a2f021c1bc68.html