Home > Article > Backend Development > DedeCMS Error: (PHP 5.3 and above) Please set request_order,dedecmsorder_PHP教程
Some hosts using PHP 5.3 may have the following prompt:
<span>引用</span><br />(PHP <span>5.3</span> and above) Please <span>set</span> <span>'</span><span>request_order</span><span>'</span> ini value to include C,G and P (recommended: <span>'</span><span>CGP</span><span>'</span>) <span>in</span> php.ini
Since a configuration item "request_order" has been added to the latest version of PHP, and the default value is "GP", this has certain security risks. Here we recommend users to change the configuration to "CGP"
You can view the corresponding php.ini configuration directory in phpinfo and find the following options:
request_order = <span>"</span><span>GP</span><span>"</span>
changed to
request_order = <span>"</span><span>CGP</span><span>"</span>
Just restart the server.
<span><span>注意</span> 由于此选项会影响服务器的安全,请大家务必及时更改。</span>