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 Error: (PHP 5.3 and above) Please set 'request_order' ini value to include C,G and P (recommended: 'CGP') in php.ini,more...
织梦登录后台报错!
官方回复:
由于在PHP最新的版本中增加了一个配置项目“request_order”,默认值为“GP”,这个存在一定的安全风险。这里我们建议用户将配置更改为“CGP”
可以在phpinfo中查看对应的php.ini配置目录,找到下面选项:request_order = "GP"更改为
request_order = "CGP"重启服务器后即可。
但是一般大家用的都是虚拟主机,没有权限修改,所以我们还是改dedecms文件吧,把这个报错执行代码注释掉,找到include/common.inc.php文件的第32行到第36行,把以下这段注释掉就行了:
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.in
打开根目录下的 include/common.inc.php文件的第32行到第36行,在上述代码前后分别加上 注释符 /* */,结果:
/* 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.in */
方法二:把GP改为CGP
找到include/common.inc.php文件,约第34行,把
if(strtoupper(ini_get(‘request_order’)) == ‘GP’)
改为:
if(strtoupper(ini_get(‘request_order’)) == ‘CGP’)