学习NO.1 发表于 2015-4-6 19:28:37

DedeCMS Error: (PHP 5.3 and above) Please set request_order

部分使用PHP 5.3的主机可能会有下面的提示:
(PHP 5.3 and above) Please set 'request_order' ini value to include C,G and P (recommended: 'CGP') in php.ini由于在PHP最新的版本中增加了一个配置项目“request_order”,默认值为“GP”,这个存在一定的安全风险。这里我们建议用户将配置更改为“CGP”
可以在phpinfo中查看对应的php.ini配置目录,找到下面选项:
request_order = "GP"

更改为
request_order = "CGP"
重启服务器后即可。

页: [1]
查看完整版本: DedeCMS Error: (PHP 5.3 and above) Please set request_order