Update Internet Information Server (IIS) Fast CGI Timeout

February 27, 2022 note-to-self

When debugging on Windows using Internet Information Server, if I took too long to step through what I was debugging, it would time out and I'd have to start over. Talk about anxiety! Lol. This fixes it so you can debug and a comfortable pace:

Alt text

Alt text

Alt text

In app/web/web.config, add

<httpRuntime executionTimeout="360" />

Restart web server.

Might also need to look at max_execution_time in php.ini

See also: PHP's set_time_limit php.ini setting.