If the server is normal, this error often occurs when a large string is submitted. The reason is that the server processing times out when processing such a huge string to submit a request. You can solve this problem by setting the timeout configuration in fcgiext. ini and the timeout configuration in PHP. ini. Of course, you may need to modify more configuration information based on your individual settings on the server. For example, how much data can be submitted at a time.
FastCGI Error
The FastCGI handler was unable to process the request.
---------------------------
Error details:
? The FastCGI process exceeded configured activity timeout
? Error number: 258 (0 × 80070102 ).
? Error Description: μè y μ? 2 bytes X hour 1y hour ±? Bytes
HTTP Error 500-server error.
Internet Information Services (IIS)
Creating an independent application pool for the website can also solve some problems caused by this.
The configuration of PHP in fcgiext. INI is as follows:
12345678 |
[Types] PHP = PHP [PHP] exepath = D: \ PHP \ php-cgi.exeInstanceMaxRequests = 10000 activitytimeout = 600 requesttimeout = 600 environmentvars = php_fcgi_max_requests: 10000, phprc: D: \ PHP \ |
You can adjust the number.
The above prompt indicates that activitytimeout = 600 in the configuration file times out. But not necessarily because of this.
Solution:
Configure PHP. ini:
Max_execution_time= 3000
The default value is 30, and then it is changed to 300. The PHP reports a timeout error and changes it to 3000.
From http://piaoyun.cc/iis-fastcgi-error-php-258.html
FastCGI error number: 258 (0 × 80070102) the waiting operation is outdated. solution: