当前位置:首页 > CMS教程 > DeDecms > 列表

DedeCMS错误(PHP 5.3 and above) Please set 'request_order&#039

发布:smiling 来源: PHP粉丝网  添加日期:2019-01-03 11:24:13 浏览: 评论:0 

安装了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 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...”

解决办法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')

搞定。

Tags: Please set request_order& 039

分享到: