Boa tarde, alguém sabe como configurar o fastCGI no IIS? já tentei alguns tutorias, mas sempre dá erro.
Obs: por eu não ter acesso ao php.ini, eu preciso configurar o max_execution_time de alguma forma. Eu olhei nesse site, mas não consegui configurar corretamente: http://www.iis.net/configreference/system.webserver/fastcgi
meu arquivo web.config:
<?xml version="1.0"?>
<configuration>
<system.webServer>
<fastCgi>
<application fullPath="C:\PHP5\php-cgi.exe"
arguments="-d open_basedir=e:\home\pasta\web\teste" />
</fastCgi>
</system.webServer>
<location path="" overrideMode="Allow">
<system.webServer>
<handlers accessPolicy="Read, Script">
<add name="PHP via FastCGI 1"
path="*.php"
verb="*"
modules="FastCgiModule"
scriptProcessor="C:\PHP5\php-cgi.exe|-d open_basedir=e:\home\pasta\web\teste"
resourceType="Unspecified"
requireAccess="Script" />
</handlers>
</system.webServer>
</location>
</configuration>