Home Backend Development PHP Tutorial 处理(php-cgi.exe - FastCGI 进程超过了配置的请求超时时限)的问题_php技巧

处理(php-cgi.exe - FastCGI 进程超过了配置的请求超时时限)的问题_php技巧

May 17, 2016 am 08:57 AM
fastcgi time out

【详细错误】:
HTTP 错误 500.0 - Internal Server Error
C:\Program Files\PHP\php-cgi.exe - FastCGI 进程超过了配置的请求超时时限
【环境】:php + IIS7.5
解决办法:
方法一:
C:\Windows\System32\inetsrv\config\applicationHost.config 进行编辑,将activityTimeout设置调大,默认为600(10分钟),最大支持3600(1小时),单位秒~

方法二:
开始->运行->cmd->进入
C:\Windows\system32\inetsrv\appcmd set config -section:system.webServer/fastCgi/[fullPath='C:\Program Files\PHP\php-cgi.exe'].activityTimeout:600

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve Java thread interrupt timeout exception (ThreadInterruptedTimeoutExceotion) How to solve Java thread interrupt timeout exception (ThreadInterruptedTimeoutExceotion) Aug 18, 2023 pm 01:57 PM

How to solve the Java thread interrupt timeout exception (ThreadInterruptedTimeoutException). In Java multi-thread programming, we often encounter situations where the thread execution time is too long. In order to prevent threads from occupying too many system resources, we usually set a timeout. When the thread execution time exceeds the timeout, we hope to be able to interrupt the execution of the thread. Java provides a thread interruption mechanism. By calling the thread's interrupt() method, you can

How does Meituan pay for overtime? Meituan's overtime compensation standards! How does Meituan pay for overtime? Meituan's overtime compensation standards! Mar 16, 2024 pm 07:55 PM

1. How will Meituan compensate for overtime? Meituan’s overtime compensation standards! Meituan’s overtime compensation rules are as follows: (1) Overtime when purchasing the Punctual Service: After selecting the Punctual Service, if the delivery rider fails to deliver on time, the system will automatically start the compensation process, and the amount of compensation will be determined based on the order details and the overtime duration. . (2) Ordinary timeout for non-purchased punctual products: 1. If the actual delivery time of the order is more than 10 minutes but less than 20 minutes later than the promised delivery time, 25% of the actual payment amount of the order will be compensated. 2. If the actual delivery time of the order is more than 20 minutes or less than 30 minutes later than the promised delivery time, 30% of the actual payment amount of the order will be compensated. 3. If the actual delivery time of the order is more than 30 minutes later than the promised delivery time, 50% of the actual payment amount of the order will be compensated. 4

Lock wait timeout exceeded; try restarting transaction - How to solve MySQL error: transaction wait timeout Lock wait timeout exceeded; try restarting transaction - How to solve MySQL error: transaction wait timeout Oct 05, 2023 am 08:46 AM

Lockwaittimeoutexceeded;tryrestartingtransaction - How to solve the MySQL error: transaction wait timeout. When using the MySQL database, you may sometimes encounter a common error: Lockwaittimeoutexceeded;tryrestartingtransaction. This error indicates that the transaction wait timeout. This error usually occurs when

What to do if Meituan's errand delivery times out_How to deal with Meituan's errand delivery timeout What to do if Meituan's errand delivery times out_How to deal with Meituan's errand delivery timeout Mar 28, 2024 am 09:26 AM

1. First of all, when taking out food, you need to know whether the order is delivered by the merchant itself or by Meituan. Generally speaking, the order receiving efficiency of the merchant's self-delivery is low and timeouts often occur. However, since Meituan is not involved in the delivery, there is no timeout. Compensation principle. At this time, you can check to see if the order submitted contains a compensation clause for overtime delivery. If there is a relevant clause in the claim, there is no need to say more, the merchant will claim the claim. If there are no relevant rules, it is recommended that you leave a negative review or leave a message about the meal delivery service on the platform, or contact the merchant directly to complain about the delivery service so as to negotiate compensation. If you really can't negotiate, you can only admit that you are out of luck. Please pay more attention next time. 2. Overtime compensation model: The merchant promises a delivery time and a discount, and receives payment from the user

How to solve frequent network connection timeout issues in Linux systems How to solve frequent network connection timeout issues in Linux systems Jun 30, 2023 am 11:03 AM

How to deal with the frequent network connection timeout problem in Linux systems When using Linux systems for network communication, network connection timeouts are often encountered. This will bring inconvenience to our work and life. The reasons may be unstable network connection, high server load, or improper system configuration. In this article, we will introduce some methods to deal with frequent network connection timeout issues. Check the stability of the network connection First, we need to check the stability of the network connection. You can try using another device to connect to the same network, or

How to configure and optimize FastCGI in Nginx How to configure and optimize FastCGI in Nginx May 21, 2023 am 08:16 AM

fastcgi: fastcgi is developed and improved from cgi. The main disadvantage of the traditional cgi interface method is poor performance, because every time the http server encounters a dynamic program, the script parser needs to be restarted to perform parsing, and then the results are returned to the http server. This is almost unavailable when dealing with high concurrent access. In addition, the traditional cgi interface method has poor security and is rarely used now. The fastcgi interface mode adopts the c/s structure, which can separate the http server and the script parsing server, and start one or more script parsing daemons on the script parsing server. Every time the http server encounters a dynamic program, it can be delivered directly to fastcg

How to solve Java concurrency timeout exception (TimeoutException) How to solve Java concurrency timeout exception (TimeoutException) Aug 18, 2023 am 10:21 AM

How to solve Java concurrency timeout exception (TimeoutException) In multi-threaded programming, we often encounter situations where concurrent operations time out. When we need to perform a long-running operation, if the preset time limit is exceeded, a timeout exception (TimeoutException) needs to be thrown. This article will introduce how to solve Java concurrency timeout exceptions and provide corresponding code examples. A common solution using Future and ExecutorService is to use

Is there any compensation if Ele.me times out? Share Ele.me's overtime application compensation standards! Is there any compensation if Ele.me times out? Share Ele.me's overtime application compensation standards! Mar 15, 2024 pm 05:58 PM

1. Is there any compensation if Ele.me times out? Ele.me will provide compensation if it times out, but the prerequisite is that the user must purchase the Punctual Treasure or the merchant will give the Punctual Treasure as a gift when purchasing goods. Only with the Punctual Treasure can the compensation service be provided if the timeout expires. The latest version of Ele.me Category: Convenient Life Download Recommended Download: The latest version of Ele.me is a convenient takeout ordering platform. Through the Ele.me app, users can conveniently browse nearby restaurant menus, place orders and pay, and enjoy food delivery services. The latest version of Ele.me also adds a variety of special features, such as ordering, merchant discounts, etc., allowing users to enjoy delicious food more cheaply. The interface is simple and clear, the operation is simple and convenient, and it supports multiple payment methods, giving users a better experience. 2. Share Ele.me’s overtime application compensation standards! 1

See all articles