当前位置: SEO优化 > 织梦dedecms > 织梦常见问题 > 正文
织梦常见问题 织梦常见问题 关注:3 内容:22

织梦DedeCMS错误: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"

      重启服务器后即可。


      处理方法一:

      但是一般大家用的都是虚拟主机,没有权限修改,所以我们还是改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
      */

      处理方法二:

      找到include/common.inc.php文件,约第34行,把把GP改为CGP

      if(strtoupper(ini_get(‘request_order’)) == ‘GP’)

      改为:

      if(strtoupper(ini_get(‘request_order’)) == ‘CGP’)

    • 管理后台
    • 帖子间隔 侧栏位置: