Just installed Dede today, installation completed by an error message (PHP 5.3 and above) please set ' request_order ' ini value to include C,g and P (recommended: ' CGP ') I n php.ini
In Dede, the solution is given to request_order this configuration option from the default
Request_order = "GP"
Change to
Request_order = "CGP"
Problem solving;
About Request_order This configuration option is a new addition to the 5.3.x version of PHP.
The insecurity about him can be seen from the following:
$_request The value of this super global variable is affected by Request_order in PHP.ini, in the latest php5.3.x series, the Request_order default is GP, which means that the default configuration $_request contains only $_get and $_ Post and not include $_cookie. Globals variables can be submitted by means of cookies.
Thus bypassing the global variable defenses in most open source programs. So to change the secondary option to Request_order = "CGP"