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.如果安装遇到这个问题
解决1 进入php安装目录 修改php.ini
要把request_order=“GP”改成“CGP”,然后重启一下服务器。
2.修改CMS下的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.ini,
{
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,
注释掉就可以了