Recommended request_order in php. ini
This article mainly introduces the request_order recommendation settings in php. ini. For more information, see
Dede has just been installed today. After the installation is complete, an error message (PHP 5.3 and above) Please set 'request _ order' ini value to include C, G and P (recommended: 'cgp ') is returned ') in php. ini
Dede provides a solution to remove the request_order configuration option from the default
Request_order = "GP"
Change
Request_order = "CGP"
Problem solving;
The configuration option request_order is newly added in php 5.3.x.
His insecurity can be seen from the following:
$ _ REQUEST the value of this super global variable is subject to php. the Influence of request_order in ini. In the latest php5.3.x series, the default value of request_order is GP, by default, $ _ REQUEST only includes $ _ GET and $ _ POST, but not $ _ COOKIE. You can use cookies to submit GLOBALS variables.
This bypasses global variable protection in most open-source programs. Therefore, you must change the option to request_order = "CGP"