<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Search results matching tag 'php fastcgi error'</title><link>http://forums.iis.net/search/SearchResults.aspx?o=DateDescending&amp;tag=php+fastcgi+error&amp;orTags=0</link><description>Search results matching tag 'php fastcgi error'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>HTTP-fout 500.0 - Internal Server Error 	0x000000ff</title><link>http://forums.iis.net/p/1162201/1922773.aspx#1922773</link><pubDate>Fri, 30 Oct 2009 10:42:43 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1922773</guid><dc:creator>Memphiz112</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;Hello,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I have a problem when i try to connect to my MS SQL database. When i go to localhost in my web browser i get this error:&lt;/p&gt;&lt;h2&gt;HTTP-fout 500.0 - Internal Server Error&lt;/h2&gt; 
  &lt;h3&gt;C:\Program Files\PHP\php-cgi.exe - The FastCGI-proces exited unexpectedly&lt;br /&gt;&lt;/h3&gt;&lt;table cellpadding="0" cellspacing="0"&gt;&lt;tr class="alt"&gt;&lt;th&gt;Module&lt;/th&gt;&lt;td&gt;FastCgiModule&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Melding&lt;/th&gt;&lt;td&gt;ExecuteRequestHandler&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr class="alt"&gt;&lt;th&gt;Handler&lt;/th&gt;&lt;td&gt;PHP_via_FastCGI&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Foutcode&lt;/th&gt;&lt;td&gt;0x000000ff&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table cellpadding="0" cellspacing="0"&gt;&lt;tr class="alt"&gt;&lt;th&gt;Aangevraagde  URL&lt;/th&gt;&lt;td&gt;http://localhost:80/index.php&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Fysiek pad&lt;/th&gt;&lt;td&gt;C:\inetpub\wwwroot\index.php&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr class="alt"&gt;&lt;th&gt;Aanmeldingsmethode&lt;/th&gt;&lt;td&gt;Anoniem&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Aangemelde gebruiker&lt;/th&gt;&lt;td&gt;Anoniem&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;(The FastCGI-proces exited unexpectedly may be wrong translated, but i think you know what i mean?)&lt;/p&gt;&lt;p&gt;&amp;nbsp;Here is my index.php file:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Monitor met zoekfunctie&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;div id=&amp;quot;header&amp;quot;&amp;gt;&lt;br /&gt;Header&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;div id=&amp;quot;Zoeken&amp;quot;&amp;gt;&lt;br /&gt;Zoeken&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;div id=&amp;quot;Monitor&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;&lt;br /&gt;$myServer = &amp;quot;SYSADMIN-PC\SQLEXPRESS&amp;quot;;&lt;br /&gt;$myUser = &amp;quot;myusername&amp;quot;;&lt;br /&gt;$myPass = &amp;quot;mypassword&amp;quot;;&lt;br /&gt;$myDB = &amp;quot;cdr&amp;quot;;&lt;br /&gt;&lt;br /&gt;$conn = mssql_connect($myServer, $myUser, $myPass)&lt;br /&gt;or die (&amp;quot;Kan niet verbinden met $myServer&amp;quot;);&lt;br /&gt;&lt;br /&gt;$selected = mssql_select_db($myDB, $conn)&lt;br /&gt;or die (&amp;quot;Kan de volgende database niet openen: $myDB&amp;quot;);&lt;br /&gt;&lt;br /&gt;echo &amp;quot;Je bent verbonden met de database &amp;quot; . $myDB . &amp;quot; op de server &amp;quot; . $myServer . &amp;quot;.&amp;quot;;&lt;br /&gt;echo &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;$query = &amp;quot;SELECT TOP 20 CallId FROM Table_1&amp;quot;;&lt;br /&gt;$result = mssql_query($query);&lt;br /&gt;&lt;br /&gt;while($row = mssql_fetch_array($result))&lt;br /&gt;{&lt;br /&gt;echo $row[&amp;quot;CallId&amp;quot;];&lt;br /&gt;echo &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;}&lt;br /&gt;mssql_close($conn);&lt;br /&gt;&lt;br /&gt;?&amp;gt; &lt;br /&gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;&lt;p&gt;This DID work but now (a few days after i installed IIS and PHP) i get the error page.&lt;/p&gt;&lt;p&gt;I&amp;#39;m running IIS 7.5 and&amp;nbsp; Windows 7.&lt;/p&gt;&lt;p&gt;I hope someone can help me. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: IIS 7 with Fast CGI and Vista Home premium</title><link>http://forums.iis.net/p/1161011/1921054.aspx#1921054</link><pubDate>Sat, 17 Oct 2009 08:45:22 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1921054</guid><dc:creator>GregWoods</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;I&amp;#39;m getting the same error message. I used Web Platform Installer to install WordPress, along with MySQL and PHP. I&amp;#39;ve tried this on 2 PC&amp;#39;s running Windows7 both failed though for different reasons. &lt;/p&gt;
&lt;p&gt;So much for WPI making life easier!&lt;/p&gt;</description></item><item><title>FastCGI does not pass PHP error to syslog (windows event log)</title><link>http://forums.iis.net/p/1159662/1912015.aspx#1912015</link><pubDate>Thu, 30 Jul 2009 08:48:16 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1912015</guid><dc:creator>TU_MSN</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;Hello everyone,&lt;/p&gt;
&lt;p&gt;i&amp;#39;m trying to get our systems shift to W2K8 and IIS7. Therefore i need to pass every php error to the windows event log (not an error log file!), but unfortunately i can&amp;#39;t get it working. This is the only problem as the rest of my php scripts is working properly now. I&amp;#39;m using:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;- IIS 7&lt;br /&gt;- Windows Server 2008&lt;br /&gt;- PHP 5.3.0&lt;br /&gt;- Role Service: Cgi&lt;br /&gt;&lt;/strong&gt;- php.ini:&lt;br /&gt;&lt;strong&gt;error_reporting = E_ALL &amp;amp; ~E_DEPRECATED&lt;br /&gt;log_errors = On&lt;br /&gt;error_log = syslog&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Strange thing is, that calling php-fcgi.exe on the console passes the errors to the event log without any problem, although it prints a HTTP 500 status:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;php-cgi.exe -c php.ini failure.php&lt;/strong&gt;&lt;br /&gt;&lt;em&gt;Status: 500 Internal Server Error&lt;br /&gt;Content-type: text/html; charset=utf-8&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Even the setting of &amp;quot;fastcgi.logging&amp;quot; (0/1) doesn&amp;#39;t fix this issue. I already granted permission for IIS_IUSRS and the Internet Guest Account via regedit to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventLog\ and to C:\Windows\System32\winevt without success. Also php 5.2.10&amp;nbsp;and Zend Server (CE) did not pass it through.&lt;br /&gt;&lt;br /&gt;Can anyone assist and tell me what to do?&lt;/p&gt;
&lt;p&gt;Thanks in advance!&lt;br /&gt;TU_MSN&lt;/p&gt;
&lt;p&gt;PS: Where can i find the version of the FastCgi service?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>IIS7 -FastCGI -PHP White Screen of Death</title><link>http://forums.iis.net/p/1155825/1895924.aspx#1895924</link><pubDate>Sat, 07 Mar 2009 04:59:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1895924</guid><dc:creator>gusus</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;I am having an issue with IIS7 and PHP relating to clients receiving the white screen of death (blank page) after 90 seconds of processing.&amp;nbsp; Standard php processing works fine. &amp;nbsp; &lt;/p&gt;&lt;p&gt;The following are set in php.ini:&lt;/p&gt;&lt;p&gt;max_execution_time = 180&lt;br /&gt;max_input_time = 180&lt;br /&gt;memory_limit = 128M&lt;/p&gt;&lt;p&gt;In the FastCGI configuration on IIS I have the following:&lt;/p&gt;&lt;p&gt;ActivityTimeout 900&lt;br /&gt;IdleTimeout 300&lt;br /&gt;RequestTimeout 500&lt;/p&gt;&lt;p&gt;I have a simple page that runs through loop and sleeps every 15 seconds.&amp;nbsp; If I set the max_execution_time to 30 seconds, I get the php execution time exceeded error as I should with two entries in the page. If I manually set_time_limit(0), it gives the white page of death.&amp;nbsp; I have set php logging and nothing appears in the log.&amp;nbsp; I intentionally put a syntax error to make sure and the syntax error was logged.&amp;nbsp; In addition, I can set the ActivityTimeout to 10 and IIS gives me a 500 error telling me that the FastCGI process exceeded the configuration activity timeout.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;The weird thing is the Failed Request Tracking show that the time taken was 30592 msec with a status of 200 (I assume success).&amp;nbsp; However, the last entry in the request trace is &amp;quot;FASTCGI_WAITING_FOR_RESPONSE&amp;quot;...&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Any ideas???&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Help for a newbie</title><link>http://forums.iis.net/p/1155031/1892615.aspx#1892615</link><pubDate>Fri, 06 Feb 2009 18:34:20 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1892615</guid><dc:creator>emg456</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;Not sure if this is the correct place to ask...&lt;/p&gt;
&lt;p&gt;I&amp;#39;m trying to learn a bit of PHP so have installed it with IIS7 onto my Vista SP1 laptop following the instructions here &lt;a href="http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/PHP/Using-FastCGI-to-host-PHP-applications-on-IIS7"&gt;http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/PHP/Using-FastCGI-to-host-PHP-applications-on-IIS7&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It all works as far as using the command prompt to confirm that PHP is working but when I try using IE7 to browses to &lt;a href="http://localhost/phpinfo.php"&gt;http://localhost/phpinfo.php&lt;/a&gt;, the server returns a 403 forbidden error - &amp;quot;The website declined to show this webpage&amp;quot;&lt;/p&gt;
&lt;p&gt;In the Event Viewer system log, an error is generated - Event 10016, Distributed COM&lt;/p&gt;&lt;font size="1"&gt;
&lt;p&gt;The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID (this varies each time) to the user (my user) from &lt;font size="1"&gt;address LocalHost (Using LRPC). This security permission can be modified using the Component Services administrative tool.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Any ideas what&amp;#39;s going wrong here and how to fix it?&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Cheers&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&amp;nbsp;Ed&lt;/font&gt;&lt;font size="1"&gt;&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;</description></item><item><title>Multiple Undefined variable errors in PHP</title><link>http://forums.iis.net/p/1151741/1879386.aspx#1879386</link><pubDate>Mon, 15 Sep 2008 16:08:20 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1879386</guid><dc:creator>mdsterling</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;I use windows 08 with IIS7 and most content is joomla 1.5x. I keep getting&amp;nbsp; &amp;#39;undefined variable&amp;#39; errors when I go check the fail logs after getting the server 500 errors. It seems to happen with several extensions. I have to go in the php&amp;nbsp;page&amp;nbsp;and jimmy-rig&amp;nbsp;and then maybe it will work. I see the variables defined fine but it doesn&amp;#39;t seem to pass them on. The permissions are set for IUSR and other net users.&lt;/p&gt;
&lt;p&gt;It must be something I haven&amp;#39;t configured in my IIS to cause this. Anyone have any answers. I&amp;#39;ve checked post and have tried a few things from what I&amp;#39;ve read, with no positive results. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;specific error of one time is;&lt;/p&gt;
&lt;p&gt;
&lt;table class="" cellspacing="0" cellpadding="0"&gt;

&lt;tr class="alt"&gt;
&lt;th class=""&gt;Data1&lt;/th&gt;
&lt;td class="event-data" class="event-data"&gt;FASTCGI_RESPONSE_ERROR&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;th class=""&gt;Data2&lt;/th&gt;
&lt;td class="event-data" class="event-data"&gt;PHP Notice: Undefined variable: html in C:\.....&lt;/td&gt;&lt;/tr&gt;
&lt;tr class="alt"&gt;
&lt;th class=""&gt;ErrorCode&lt;/th&gt;
&lt;td class="event-data" class="event-data"&gt;5&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;th class=""&gt;ErrorCode&lt;/th&gt;
&lt;td class=""&gt;Access is denied. (0x5)&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</description></item><item><title>No Fastcgi Module on Vista Home Premium with SP1 and IIS7</title><link>http://forums.iis.net/p/1151575/1878683.aspx#1878683</link><pubDate>Sun, 07 Sep 2008 19:56:52 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1878683</guid><dc:creator>dungeness</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;No Fastcgi Module on Vista Home Premium with SP1 and IIS7.&lt;/p&gt;&lt;p&gt;&amp;nbsp;I have tried turning off CGI and turning it on again but still no Fastcgi Module (Vista Home Premium with SP1 and IIS7). Server is running IIS7 OK and serving asp pages, just no PHP pages. Latest PHP installed OK. Any ideas how to get a FastCGI module installed?&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>some problems with PHP &amp;amp; FastCGI</title><link>http://forums.iis.net/p/1149913/1871850.aspx#1871850</link><pubDate>Mon, 16 Jun 2008 19:53:02 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1871850</guid><dc:creator>Hybrid SyntaX</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;hi &lt;/p&gt;&lt;p&gt;i got some problem with PHP and FastCGI ( if i call it problem..)&lt;/p&gt;&lt;p&gt;simply when i&amp;#39;ve written an instruction like&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;lt;?php&lt;/p&gt;&lt;p&gt;echo &amp;quot;Hello&amp;lt;br /&amp;gt;&amp;quot;;&amp;nbsp;&lt;/p&gt;&lt;p&gt;?&amp;gt;&lt;/p&gt;&lt;p&gt;when i open http://localhost/a.php&lt;/p&gt;&lt;p&gt;i see something like this&lt;/p&gt;&lt;p&gt;Hello&lt;br /&gt;specified module could not be found. in Unknown
on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_radius.dll&amp;#39; - The specified module could not be found.
in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_rar.dll&amp;#39; - The specified module could not be found. in
Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_runkit.dll&amp;#39; - The specified module could not be found.
in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_sam.dll&amp;#39; - The specified module could not be found. in
Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_sdo.dll&amp;#39; - The specified module could not be found. in
Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_smtp.dll&amp;#39; - The specified module could not be found. in
Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_spl_types.dll&amp;#39; - The specified module could not be
found. in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_ssh2.dll&amp;#39; - The specified module could not be found. in
Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_stats.dll&amp;#39; - The specified module could not be found.
in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_stem.dll&amp;#39; - The specified module could not be found. in
Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_timezonedb.dll&amp;#39; - The specified module could not be
found. in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_translit.dll&amp;#39; - The specified module could not be
found. in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_uploadprogress.dll&amp;#39; - The specified module could not be
found. in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_win32ps.dll&amp;#39; - The specified module could not be found.
in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_win32scheduler.dll&amp;#39; - The specified module could not be
found. in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_win32service.dll&amp;#39; - The specified module could not be
found. in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_win32std.dll&amp;#39; - The specified module could not be
found. in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_yami.dll&amp;#39; - The specified module could not be found. in
Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library
&amp;#39;C:\PHP\ext\php_zlib_filter.dll&amp;#39; - The specified module could not be
found. in Unknown on line 0
Cannot find module (IP-MIB): At line 0 in (none)
Cannot find module (IF-MIB): At line 0 in (none)
Cannot find module (TCP-MIB): At line 0 in (none)
Cannot find module (UDP-MIB): At line 0 in (none)
Cannot find module (SNMPv2-MIB): At line 0 in (none)
Cannot find module (SNMPv2-SMI): At line 0 in (none)
Cannot find module (UCD-SNMP-MIB): At line 0 in (none)
Cannot find module (UCD-DEMO-MIB): At line 0 in (none)
Cannot find module (SNMP-TARGET-MIB): At line 0 in (none)
Cannot find module (SNMP-VIEW-BASED-ACM-MIB): At line 0 in (none)
Cannot find module (SNMP-COMMUNITY-MIB): At line 0 in (none)
Cannot find module (UCD-DLMOD-MIB): At line 0 in (none)
Cannot find module (SNMP-FRAMEWORK-MIB): At line 0 in (none)
Cannot find module (SNMP-MPD-MIB): At line 0 in (none)
Cannot find module (SNMP-USER-BASED-SM-MIB): At line 0 in (none)
Cannot find module (SNMP-NOTIFICATION-MIB): At line 0 in (none)
Cannot find module (SNMPv2-TM): At line 0 in (none) &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i&amp;#39;ve installed php 5.2.6 according to&amp;nbsp; &lt;a href="http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis7/"&gt;this article&lt;/a&gt; and a &lt;a href="http://learn.iis.net/page.aspx/208/fastcgi-with-php/" target="_blank"&gt;little this one &lt;/a&gt;&lt;/p&gt;&lt;p&gt;and my os is Windwos Vista SP1 (x64) and that was the first time that i&amp;#39;ve installed php manually so i assume that i did something wrong&lt;/p&gt;&lt;p&gt;whats my problem btw ?!&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Internet Explorer + PHP in FastCGI = fail, apparently</title><link>http://forums.iis.net/p/1149561/1870369.aspx#1870369</link><pubDate>Tue, 27 May 2008 21:00:44 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1870369</guid><dc:creator>dpadular</dc:creator><cs:applicationKey>fastcgi_module-41</cs:applicationKey><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I am posting this here because after searching and searching this seems to be an IE+IIS+FastCGI problem.&lt;/p&gt;&lt;p&gt;I am running PHP as a FastCGI module on Windows Vista x64 Home Premium.&amp;nbsp; Viewing local pages and everything works absolutely great in Firefox, but Internet Explorer has problems.&amp;nbsp; On the first load, I get the generic &amp;quot;can not display this page&amp;quot; error (even with friendly errors turned OFF).&amp;nbsp; If I refresh that page, SOMETIMES I will get a partially-loaded page at a seemingly random byte length.&amp;nbsp; These results basically alternate between error/partially loaded upon each subsequent refresh.&lt;/p&gt;&lt;p&gt;Images on localhost in IE? Perfect.&amp;nbsp; Stylesheets? Perfect.&amp;nbsp; Standalone HTML files?&amp;nbsp; Perfect.&amp;nbsp; Only when I try to access a file processing by PHP does the error occur. Even something as simple as a phpinfo() page, OR a basic HTML simply renamed as a PHP file.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br /&gt;And again, it all looks peachy in Firefox. &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br /&gt;What in the world is going on?&amp;nbsp; Please, any help is greatly appreciated.&amp;nbsp; This is killing my test environment.&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Daniel&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>