<?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>IIS 7 - FastCGI Module</title><link>http://forums.iis.net/1104.aspx</link><description>Questions related to the FastCGI module for IIS7</description><dc:language>en</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/thread/1922773.aspx</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><slash:comments>5</slash:comments><comments>http://forums.iis.net/thread/1922773.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1922773</wfw:commentRss><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>Windows 7 64Bit - Error 500.0 0x00000000</title><link>http://forums.iis.net/thread/1922317.aspx</link><pubDate>Tue, 27 Oct 2009 13:37:56 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1922317</guid><dc:creator>BigIain</dc:creator><slash:comments>4</slash:comments><comments>http://forums.iis.net/thread/1922317.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1922317</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi,&lt;/p&gt;&lt;p&gt;&amp;nbsp;Having installed Windows 7 Home Premium, I set about installing PHP onto IIS7 using the Web Platform Installer. I tested the installation using the usual phpinfo script but get the following error:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;h2&gt;HTTP Error 500.0 - Internal Server Error&lt;/h2&gt; 
  &lt;h3&gt;The page cannot be displayed because an internal server error has occurred.&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;Notification&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;Error Code&lt;/th&gt;&lt;td&gt;0x00000000&lt;/td&gt;&lt;/tr&gt; 
     
   &lt;/table&gt; 
   
   
    
    &lt;table cellpadding="0" cellspacing="0"&gt;&lt;tr class="alt"&gt;&lt;th&gt;Requested URL&lt;/th&gt;&lt;td&gt;http://localhost:80/php.php&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Physical Path&lt;/th&gt;&lt;td&gt;C:\inetpub\wwwroot\php.php&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr class="alt"&gt;&lt;th&gt;Logon Method&lt;/th&gt;&lt;td&gt;Anonymous&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Logon User&lt;/th&gt;&lt;td&gt;Anonymous&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I had this running on the RC1 version of Windows 7, but had the same issue and annoyingly can&amp;#39;t remember how I went about fixing it.&lt;/p&gt;&lt;p&gt;I&amp;#39;ve tried removing and reinstalling PHP, restarted the web server and even threw away all my security by assigning &amp;quot;Everyone&amp;quot; full access on the relevent directories. All gives the same error. I also tried to enable the option to run 32 bit applications within the web server, to no avail.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;So I&amp;#39;m out of ideas. Can someone help? &lt;br /&gt;&lt;/p&gt;&lt;table cellpadding="0" cellspacing="0"&gt;&lt;tr class="alt"&gt;&lt;th&gt;&lt;br /&gt;&lt;/th&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;&lt;br /&gt;&lt;/th&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class="alt"&gt;&lt;th&gt;&lt;br /&gt;&lt;/th&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;&lt;br /&gt;&lt;/th&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>PHP mySQL 500.0 internal server error iis 7</title><link>http://forums.iis.net/thread/1924517.aspx</link><pubDate>Thu, 12 Nov 2009 20:23:36 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1924517</guid><dc:creator>puk284</dc:creator><slash:comments>2</slash:comments><comments>http://forums.iis.net/thread/1924517.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1924517</wfw:commentRss><description>Hi,

Iv installed iis 7 fine with no problems, iv installed php which works fine, iv also installed phpmyadmin and mySQL which hav no problems. Im running a php website on my localhost with no problems. The problem that i have is that when i want to submit some values from a form into a database and table that i created in phpmyadmin i get the error

HTTP Error 500.0 - Internal Server Error
C:\PHP\php-cgi.exe - The FastCGI process exited unexpectedly

i have looked at many resources for a solution but nothing seems to work

the extension_dir directive in PHP.ini is set to &amp;#39;C:\PHP\ext which is something someone suggested

also 

the extension=php_gd.dll is uncommented

Thanks for your help in advance.</description></item><item><title>php write permission - COMPUTER\USERS ? </title><link>http://forums.iis.net/thread/1888450.aspx</link><pubDate>Sat, 27 Dec 2008 16:43:36 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1888450</guid><dc:creator>RustySpoon</dc:creator><slash:comments>7</slash:comments><comments>http://forums.iis.net/thread/1888450.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1888450</wfw:commentRss><description>Php (FastCGI) can&amp;#39;t write files in a directory with the IUSR_COMPUTER full control permission, but with COMPUTER\USERS group full control permission everything works perfect. Why? :( 
</description></item><item><title>Python and FastCGI on IIS</title><link>http://forums.iis.net/thread/1923802.aspx</link><pubDate>Sun, 08 Nov 2009 02:17:32 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1923802</guid><dc:creator>Preston Landers</dc:creator><slash:comments>0</slash:comments><comments>http://forums.iis.net/thread/1923802.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1923802</wfw:commentRss><description>Hello, I&amp;#39;m a Python developer trying to get my FastCGI application running under IIS.&amp;nbsp; I&amp;#39;m currently developing on IIS 7.5 but I&amp;#39;d like my solution to work under 6.0 and 7.0 too.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m distributing my own copy of Python 2.6.4 with a patched socket module that implements fromfd() and dup().&amp;nbsp; I&amp;#39;ve also made some patches to Flup which use this to implement a multiprocess FastCGI TCP Server.&amp;nbsp; I&amp;#39;ve got this working fine with Lighttpd on Windows and now I&amp;#39;m trying to get it work under IIS.&lt;br /&gt;&lt;br /&gt;I can get a straight up CGI Python program working with IIS.&amp;nbsp; I&amp;#39;d like to use FastCGI for obvious performance reasons.&amp;nbsp; But it looks like right now the FastCGI functionality in IIS doesn&amp;#39;t support TCP based FastCGI servers, or if it does it&amp;#39;s not obvious how to configure this.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;PHP seems to be the only currently supported scripting language for IIS FastCGI.&amp;nbsp; It uses a php-cgi.exe program which seems to spawn and manage the subprocesses... or does it?&amp;nbsp; Does the IIS manage spawning a pool of different php-cgi.exe processes? &lt;br /&gt;&lt;br /&gt;I have my own Python program (modified flup) which manages FastCGI child process but it exposes a TCP interface.&amp;nbsp; I&amp;#39;m open to the idea of IIS managing the process spawning for me but I&amp;#39;m not sure what interface to present.&amp;nbsp; Named pipes? Stdin/stdout only?&amp;nbsp; Is there any documentation available on what behaviors the IIS FastCGI plugin expects of handler exe or dll programs?&amp;nbsp; If I get something working I&amp;#39;ll post the solution.&lt;br /&gt;&lt;br /&gt;thanks,&lt;br /&gt;-Preston&lt;br /&gt;&lt;br /&gt;</description></item><item><title>help configuring iis7 to send out php mail</title><link>http://forums.iis.net/thread/1923344.aspx</link><pubDate>Wed, 04 Nov 2009 10:42:24 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1923344</guid><dc:creator>kallufvv</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1923344.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1923344</wfw:commentRss><description>&lt;p&gt;Hi I am new to IIS7.I am not sure if this has been asked anywhere before but I need help to configure IIS7 to send out mails through php scripts.I have a website built in php and the links and the content&amp;#39;s being displayed properly but when I submit the form the e-mail is not sent.I have modified the php.ini tried restarting the server after but nothing seems to help.Any help in this regard would be greatly appreciated.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks &lt;/p&gt;
&lt;p&gt;Kalz&lt;/p&gt;</description></item><item><title>warning while sending mail out of php script</title><link>http://forums.iis.net/thread/1923350.aspx</link><pubDate>Wed, 04 Nov 2009 11:47:50 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1923350</guid><dc:creator>kallufvv</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1923350.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1923350</wfw:commentRss><description>&lt;p&gt;&lt;strong&gt;Warning&lt;/strong&gt;: mail() [&lt;a href="http://localhost/awt/function.mail"&gt;function.mail&lt;/a&gt;]: Failed to connect to mailserver at &amp;quot;localhost&amp;quot; port 25, verify your &amp;quot;SMTP&amp;quot; and &amp;quot;smtp_port&amp;quot; setting in php.ini or use ini_set() in &lt;b&gt;C:\inetpub\wwwroot\awt\quote.php&lt;/b&gt; on line &lt;b&gt;33&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warning&lt;/b&gt;: mail() [&lt;a href="http://localhost/awt/function.mail"&gt;function.mail&lt;/a&gt;]: Failed to connect to mailserver at &amp;quot;localhost&amp;quot; port 25, verify your &amp;quot;SMTP&amp;quot; and &amp;quot;smtp_port&amp;quot; setting in php.ini or use ini_set() in &lt;b&gt;C:\inetpub\wwwroot\awt\quote.php&lt;/b&gt; on line &lt;b&gt;34&lt;/b&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;my php.ini settings are as follows&lt;/p&gt;
&lt;p&gt;SMTP=localhost&lt;/p&gt;
&lt;p&gt;smtp port=25&lt;/p&gt;
&lt;p&gt;sendmail_from=me@example.com&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;can anyone suggest where I am goig wrong.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Kalz&lt;/p&gt;</description></item><item><title>three different PHP sites, want individual PHP.ini for each</title><link>http://forums.iis.net/thread/1923119.aspx</link><pubDate>Mon, 02 Nov 2009 18:48:37 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1923119</guid><dc:creator>LatrobeDude</dc:creator><slash:comments>3</slash:comments><comments>http://forums.iis.net/thread/1923119.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1923119</wfw:commentRss><description>&lt;p&gt;I have three sites currently running on a W2K8 server under fastcgi, but they are all sharing a common php.ini, within the c:\php\php.ini file.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I have tried to follow the directions here&lt;/p&gt;
&lt;p&gt;&lt;a href="http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-70/#Per-site_PHP_configuration"&gt;http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-70/#Per-site_PHP_configuration&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;to try and &amp;quot;specifing PHP.INI location&amp;quot;, but despite multiple attempts to configure the applicationHost.config file, I cannot get the three sites to each run off their own file.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Info:&lt;/p&gt;
&lt;p&gt;site 1:&amp;nbsp;&amp;nbsp; beta.xxxxx.com, local path to php file: c:\websites\beta.xxxxx.com\php.ini, locap path to web site files c:\websites\beta.xxxxx.com\www\&lt;/p&gt;
&lt;p&gt;site 2: &lt;a href="http://www.yyyyy.com/"&gt;www.yyyyy.com&lt;/a&gt;&amp;nbsp; , local path to php file: c:\websites\www.yyyyy.com\php.ini, locap path to web site files c:\websites\www.yyyyy.com\www\&lt;/p&gt;
&lt;p&gt;site 3: &lt;a href="http://www.xxxxx.com/"&gt;www.xxxxx.com&lt;/a&gt;&amp;nbsp; , local path to php file: c:\websites\www.xxxxx.com\php.ini, locap path to web site files c:\websites\www.xxxxx.com\www\&lt;/p&gt;
&lt;p&gt;So far, the only thing I can get to work is to have all three sites read one PHP.ini file from inside one of the directories&amp;nbsp; (this WORKS, but globally changes all three sites to read from the one PHP.ini file).&amp;nbsp; I need separate configs, one for each file.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fastCgi&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;application fullPath=&amp;quot;C:\PHP\php-cgi.exe&amp;quot; arguments=&amp;quot;&amp;quot; maxInstances=&amp;quot;4&amp;quot; idleTimeout=&amp;quot;300&amp;quot; activityTimeout=&amp;quot;30&amp;quot; requestTimeout=&amp;quot;7000&amp;quot; instanceMaxRequests=&amp;quot;10000&amp;quot; protocol=&amp;quot;NamedPipe&amp;quot; queueLength=&amp;quot;1000&amp;quot; flushNamedPipe=&amp;quot;false&amp;quot; rapidFailsPerMinute=&amp;quot;10&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;environmentVariables&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;environmentVariable name=&amp;quot;PHPRC&amp;quot; value=&amp;quot;C:\Websites\beta.xxxxx.com\php.ini&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/environmentVariables&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/application&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fastCgi&amp;gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I cannot seem to get the &amp;quot;site 2&amp;quot; and &amp;quot;site 3&amp;quot; setups to work and read their own php.ini file.&amp;nbsp; If I add more entries into the &amp;lt;fastcgi&amp;gt; area for the other sites, that&amp;nbsp;that typically get IIS generates errors that it can&amp;#39;t find the right handler.&lt;/p&gt;
&lt;p&gt;Am going nuts here as I need to have separate configs in the php.ini files, and short of moving the sites to separate boxes am getting more grey hair by the second.&lt;/p&gt;</description></item><item><title>PHP in virtual directory</title><link>http://forums.iis.net/thread/1922547.aspx</link><pubDate>Wed, 28 Oct 2009 21:56:43 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1922547</guid><dc:creator>jvanulden</dc:creator><slash:comments>6</slash:comments><comments>http://forums.iis.net/thread/1922547.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1922547</wfw:commentRss><description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I finally managed to get PHP running under FastCGI. I had to do a manual install as the Platform Installer failed. PHP works fine in wwwroot but doesn&amp;#39;t work in any virtual directory. Any ideas?&lt;/p&gt;
&lt;p&gt;Thank you in advance!&lt;/p&gt;</description></item><item><title>First line when running perl via CGI</title><link>http://forums.iis.net/thread/1922022.aspx</link><pubDate>Sat, 24 Oct 2009 15:49:34 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1922022</guid><dc:creator>clionel</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1922022.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1922022</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;if I run Perl via CGI, I get the following line above the result of my script&lt;br /&gt;HTTP/1.1 200 OK
Date: Sat, 24 Oct 2009 15:40:04 GMT
Server: Microsoft-IIS/7.0



&lt;/p&gt;&lt;p&gt;How can I erase that line? What do I have to do? It&amp;#39;d be very kind of you if you answer&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Clionel &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>debugging PHP errors?</title><link>http://forums.iis.net/thread/1861808.aspx</link><pubDate>Sun, 13 Jan 2008 15:04:53 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1861808</guid><dc:creator>e1ny</dc:creator><slash:comments>4</slash:comments><comments>http://forums.iis.net/thread/1861808.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1861808</wfw:commentRss><description>&lt;p&gt;Hi All: Is there any way to configure IIS 7 to return PHP debugging/compilation error&amp;nbsp;information to the web browser, like turning off custom errors in .NET? I realize there are security issues in doing this but it&amp;#39;s only temporary while migrating an app over from Apache.&lt;/p&gt;</description></item><item><title>The first access is slow + PHP + IIS7</title><link>http://forums.iis.net/thread/1921963.aspx</link><pubDate>Fri, 23 Oct 2009 21:34:40 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1921963</guid><dc:creator>Zepelini</dc:creator><slash:comments>5</slash:comments><comments>http://forums.iis.net/thread/1921963.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1921963</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have a web site&amp;nbsp;in PHP + FastCGI&amp;nbsp;running&amp;nbsp;on IIS 7.0. The overall perfomance is good, but always the first access is very slow.&amp;nbsp; How to solve this problem? Is it about recycling app pool? I use default setting for app pool. I am new in IIS, any help is welcome! Sorry about any english error.&lt;/p&gt;
&lt;p&gt;Thank&amp;nbsp;you.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>The FastCGI executable could not be found</title><link>http://forums.iis.net/thread/1921131.aspx</link><pubDate>Mon, 19 Oct 2009 01:01:35 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1921131</guid><dc:creator>idroshin</dc:creator><slash:comments>2</slash:comments><comments>http://forums.iis.net/thread/1921131.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1921131</wfw:commentRss><description>HTTP Error 500.0 - Internal Server Error The FastCGI executable could not be found Request summary http://docs.google.com/View?id=dckmvxrg_6132w2ndhb Compact view http://docs.google.com/View?id=dckmvxrg_60gbsx3bjh Tried to access PHPmyAdmin, word press,  Pls help</description></item><item><title>FastCGI: hosting PHP application, concurrent requests config. help needed</title><link>http://forums.iis.net/thread/1921440.aspx</link><pubDate>Tue, 20 Oct 2009 21:50:38 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1921440</guid><dc:creator>smartAdmin</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1921440.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1921440</wfw:commentRss><description>&lt;p&gt;Hi guys,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I have configured my new FastCGI installation on Windows Vista SP1 according to instructions listed here:&lt;/p&gt;&lt;p&gt;http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-70/&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However, the server still can not process more than 10 parallel requests, any idea on what settings I might be missing?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks! &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Locking down files and folders</title><link>http://forums.iis.net/thread/1921053.aspx</link><pubDate>Sat, 17 Oct 2009 08:00:30 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1921053</guid><dc:creator>Dscoduc</dc:creator><slash:comments>4</slash:comments><comments>http://forums.iis.net/thread/1921053.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1921053</wfw:commentRss><description>&lt;p&gt;Having recently installed PHP on my Windows 2008 and installing Wordpress I came to the point where I wanted to lock down the file ACL&amp;#39;s.&amp;nbsp; I have been trying to understand the identity that Wordpress is running under (assuming it&amp;#39;s the AppPool identity) and also the identity that&amp;nbsp;web clients are accessing with.&amp;nbsp; The problem is I can&amp;#39;t seem to get my head around this compared to how ASP.NET and IIS 6.0/7.0 works.&lt;/p&gt;
&lt;p&gt;I guess there are two different accounts:&amp;nbsp; the app pool acount which needs mostly read-only access with limited write access to specific files and folders.&amp;nbsp; As for client access, is there a specific/different account used by clients when connecting to Wordpress or is it using the same App Pool identity?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Much appreciated.&lt;/p&gt;</description></item><item><title>IIS 7 with Fast CGI and Vista Home premium</title><link>http://forums.iis.net/thread/1917443.aspx</link><pubDate>Fri, 18 Sep 2009 03:22:18 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1917443</guid><dc:creator>keerthibharath</dc:creator><slash:comments>3</slash:comments><comments>http://forums.iis.net/thread/1917443.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1917443</wfw:commentRss><description>It has been 1-2 days, since I&amp;#39;ve been unsuccessfully working with this error.

Compoents: Php 5.3.0 installed manually
                   Fastcgi installed via web platform installer
                   Windows Vista home premium and IIS 7




Server Error in Application &amp;quot;DEFAULT WEB SITE&amp;quot;
Internet Information Services 7.0
Error Summary
HTTP Error 500.21 - Internal Server Error
Handler &amp;quot;PHP_via_FastCGI&amp;quot; has a bad module &amp;quot;FastCgiModule&amp;quot; in its module list
Detailed Error Information
Module	 IIS Web Core
Notification	 ExecuteRequestHandler
Handler	 PHP_via_FastCGI
Error Code	 0x8007000d
Requested URL	http://localhost:80/ad/openx/index.php
Physical Path	 C:\inetpub\wwwroot\ad\openx\index.php
Logon Method	 Anonymous
Logon User	 Anonymous
Most likely causes:
ASP.NET is not installed or incompletely installed.
A configuration typographical error occured.
Unfavourable pre-condition evaluation exists.
Things you can try:
If ManagedPipelineHandler is missing, ensure that:
ManagedEngine is in .
ManagedPipelineHandler is in , with correct pre-conditions.
Install ASP.NET.
Ensure all system.webServer/handlers@modules are in system.webServer/modules@name.
Review pre-conditions in the  and  sections.
Links and More Information
IIS core does not recognize the module.
View more information »</description></item><item><title>HTTP Error 500.0 - Internal Server Error</title><link>http://forums.iis.net/thread/1920321.aspx</link><pubDate>Sun, 11 Oct 2009 20:05:59 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1920321</guid><dc:creator>idroshin</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1920321.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1920321</wfw:commentRss><description>Hey guy my problem below

OS: VISTA HOME PREMIUM SERVICE PACK 2

C:\Program Files\PHP\php-cgi.exe - The FastCGI process exited unexpectedly

Detailed Error Information
Module	FastCgiModule
Notification	ExecuteRequestHandler
Handler	PHP_via_FastCGI
Error Code	0xc0000005
Requested URL	http://localhost:80/New/install/index.php
Physical Path	C:\inetpub\wwwroot\New\install\index.php
Logon Method	Anonymous
Logon User	Anonymous
Failed Request Tracing Log Directory	C:\inetpub\logs\FailedReqLogFiles

 LOG FILE READS AS FOLLOWS






 
  
  0
  1
  0
  1
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  1
  DefaultAppPool
  1610612761
  0
  http://localhost:80/New/install/index.php
  GET
 
 
  GENERAL_REQUEST_START
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  5
  53
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  AspFilterSessionId
  
  true
 
 
  GENERAL_SET_REQUEST_HEADER
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  4
  50
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  Cache-Control: max-age=0
Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Cookie: MOODLEID_=%25ED%25C3%251CC%25B7d
Host: localhost
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.25 Safari/532.0

 
 
  GENERAL_REQUEST_HEADERS
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  4
  30
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  
  517
 
 
  GENERAL_GET_URL_METADATA
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  4
  44
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  
  
  true
 
 
  USER_SET
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  0
  33
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  500
  0
  500.htm
 
 
  GENERAL_SEND_CUSTOM_ERROR
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  4
  35
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
 
 
  GENERAL_FLUSH_RESPONSE_START
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  4
  47
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET

 
 
  GENERAL_RESPONSE_HEADERS
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  5
  49
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  &amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Strict//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&amp;quot;&amp;gt; 
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt; 
&amp;lt;head&amp;gt; 
&amp;lt;title&amp;gt;IIS 7.0 Detailed Error - 500.0 - Internal Server Error&amp;lt;/title&amp;gt; 
&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt; 
&amp;lt;!-- 
body{margin:0;font-size:.7em;font-family:Verdana,Arial,Helvetica,sans-serif;background:#CBE1EF;} 
code{margin:0;color:#006600;font-size:1.1em;font-weight:bold;} 
.config_source code{font-size:.8em;color:#000000;} 
pre{margin:0;font-size:1.4em;word-wrap:break-word;} 
ul,ol{margin:10px 0 10px 40px;} 
ul.first,ol.first{margin-top:5px;} 
fieldset{padding:0 15px 10px 15px;} 
.summary-container fieldset{padding-bottom:5px;margin-top:4px;} 
legend.no-expand-all{padding:2px 15px 4px 10px;margin:0 0 0 -12px;} 
legend{color:#333333;padding:4px 15px 4px 10px;margin:4px 0 8px -12px;_margin-top:0px; 
 border-top:1px solid #EDEDED;border-left:1px solid #EDEDED;border-right:1px solid #969696; 
 border-bottom:1px solid #969696;background:#E7ECF0;font-weight:bold;font-size:1em;} 
a:link,a:visited{color:#007EFF;font-weight:bold;} 
a:hover{text-decoration:none;} 
h1{font-size:2.4em;margin:0;color:#FFF;} 
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.4em;margin:10px 0 0 0;color:#CC0000;} 
h4{font-size:1.2em;margin:10px 0 5px 0; 
}#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:&amp;quot;trebuchet MS&amp;quot;,Verdana,sans-serif; 
 color:#FFF;background-color:#5C87B2; 
}#content{margin:0 0 0 2%;position:relative;} 
.summary-container,.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;} 
.config_source{background:#fff5c4;} 
.content-container p{margin:0 0 10px 0; 
}#details-left{width:35%;float:left;margin-right:2%; 
}#details-right{width:63%;float:left; 
}#server_version{width:96%;_height:1px;min-height:1px;margin:0 0 5px 0;padding:11px 2% 8px 2%;color:#FFFFFF; 
 background-color:#5A7FA5;border-bottom:1px solid #C1CFDD;border-top:1px solid #4A6C8E;font-weight:normal; 
 font-size:1em;color:#FFF;text-align:right; 
}#server_version p{margin:5px 0;} 
table{margin:4px 0 4px 0;width:100%;border:none;} 
td,th{vertical-align:top;padding:3px 0;text-align:left;font-weight:bold;border:none;} 
th{width:30%;text-align:right;padding-right:2%;font-weight:normal;} 
thead th{background-color:#ebebeb;width:25%; 
}#details-right th{width:20%;} 
table tr.alt td,table tr.alt th{background-color:#ebebeb;} 
.highlight-code{color:#CC0000;font-weight:bold;font-style:italic;} 
.clear{clear:both;} 
.preferred{padding:0 5px 2px 5px;font-weight:normal;background:#006633;color:#FFF;font-size:.8em;} 
--&amp;gt; 
&amp;lt;/style&amp;gt; 
 
&amp;lt;/head&amp;gt; 
&amp;lt;body&amp;gt; 
&amp;lt;div id=&amp;quot;header&amp;quot;&amp;gt;&amp;lt;h1&amp;gt;Server Error in Application &amp;quot;DEFAULT WEB SITE&amp;quot;&amp;lt;/h1&amp;gt;&amp;lt;/div&amp;gt; 
&amp;lt;div id=&amp;quot;server_version&amp;quot;&amp;gt;&amp;lt;p&amp;gt;Internet Information Services 7.0&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt; 
&amp;lt;div id=&amp;quot;content&amp;quot;&amp;gt; 
&amp;lt;div class=&amp;quot;content-container&amp;quot;&amp;gt; 
 &amp;lt;fieldset&amp;gt;&amp;lt;legend&amp;gt;Error Summary&amp;lt;/legend&amp;gt; 
  &amp;lt;h2&amp;gt;HTTP Error 500.0 - Internal Server Error&amp;lt;/h2&amp;gt; 
  &amp;lt;h3&amp;gt;C:\Program Files\PHP\php-cgi.exe - The FastCGI process exited unexpectedly&amp;lt;/h3&amp;gt; 
 &amp;lt;/fieldset&amp;gt; 
&amp;lt;/div&amp;gt; 
&amp;lt;div class=&amp;quot;content-container&amp;quot;&amp;gt; 
 &amp;lt;fieldset&amp;gt;&amp;lt;legend&amp;gt;Detailed Error Information&amp;lt;/legend&amp;gt; 
  &amp;lt;div id=&amp;quot;details-left&amp;quot;&amp;gt; 
   &amp;lt;table border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot;&amp;gt; 
    &amp;lt;tr class=&amp;quot;alt&amp;quot;&amp;gt;&amp;lt;th&amp;gt;Module&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;FastCgiModule&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
    &amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Notification&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;ExecuteRequestHandler&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
    &amp;lt;tr class=&amp;quot;alt&amp;quot;&amp;gt;&amp;lt;th&amp;gt;Handler&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;PHP_via_FastCGI&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
    &amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Error Code&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0xc0000005&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
     
   &amp;lt;/table&amp;gt; 
  &amp;lt;/div&amp;gt; 
  &amp;lt;div id=&amp;quot;details-right&amp;quot;&amp;gt; 
   &amp;lt;table border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot;&amp;gt; 
    &amp;lt;tr class=&amp;quot;alt&amp;quot;&amp;gt;&amp;lt;th&amp;gt;Requested URL&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;http://localhost:80/New/install/index.php&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
    &amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Physical Path&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;C:\inetpub\wwwroot\New\install\index.php&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
    &amp;lt;tr class=&amp;quot;alt&amp;quot;&amp;gt;&amp;lt;th&amp;gt;Logon Method&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Anonymous&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
    &amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Logon User&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Anonymous&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
    &amp;lt;tr class=&amp;quot;alt&amp;quot;&amp;gt;&amp;lt;th&amp;gt;Failed Request Tracing Log Directory&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a href=&amp;quot;file://C:\inetpub\logs\FailedReqLogFiles&amp;quot;&amp;gt;C:\inetpub\logs\FailedReqLogFiles&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; 
   &amp;lt;/table&amp;gt; 
   &amp;lt;div class=&amp;quot;clear&amp;quot;&amp;gt;&amp;lt;/div&amp;gt; 
  &amp;lt;/div&amp;gt; 
 &amp;lt;/fieldset&amp;gt; 
&amp;lt;/div&amp;gt; 
&amp;lt;div class=&amp;quot;content-container&amp;quot;&amp;gt; 
 &amp;lt;fieldset&amp;gt;&amp;lt;legend&amp;gt;Most likely causes:&amp;lt;/legend&amp;gt; 
  &amp;lt;ul&amp;gt; 	&amp;lt;li&amp;gt;IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.&amp;lt;/li&amp;gt; 	&amp;lt;li&amp;gt;IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.&amp;lt;/li&amp;gt; 	&amp;lt;li&amp;gt;IIS was not able to process configuration for the Web site or application.&amp;lt;/li&amp;gt; 	&amp;lt;li&amp;gt;The authenticated user does not have permission to use this DLL.&amp;lt;/li&amp;gt; 	&amp;lt;li&amp;gt;The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.&amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt; 
 &amp;lt;/fieldset&amp;gt; 
&amp;lt;/div&amp;gt; 
&amp;lt;div class=&amp;quot;content-container&amp;quot;&amp;gt; 
 &amp;lt;fieldset&amp;gt;&amp;lt;legend&amp;gt;Things you can try:&amp;lt;/legend&amp;gt; 
  &amp;lt;ul&amp;gt; 	&amp;lt;li&amp;gt;Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server&amp;apos;s machine account.&amp;lt;/li&amp;gt; 	&amp;lt;li&amp;gt;Check the event logs to see if any additional information was logged.&amp;lt;/li&amp;gt; 	&amp;lt;li&amp;gt;Verify the permissions for the DLL.&amp;lt;/li&amp;gt; 	&amp;lt;li&amp;gt;Install the .NET Extensibility feature if the request is mapped to a managed handler.&amp;lt;/li&amp;gt; 	&amp;lt;li&amp;gt;Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click &amp;lt;a href=&amp;quot;http://go.microsoft.com/fwlink/?LinkID=66439&amp;quot;&amp;gt;here&amp;lt;/a&amp;gt;. &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt; 
 &amp;lt;/fieldset&amp;gt; 
&amp;lt;/div&amp;gt; 
 
 
&amp;lt;div class=&amp;quot;content-container&amp;quot;&amp;gt; 
 &amp;lt;fieldset&amp;gt;&amp;lt;legend&amp;gt;Links and More Information&amp;lt;/legend&amp;gt; 
  This error means that there was a problem while processing the request. The request was received by the Web server, but during processing a fatal error occurred, causing the 500 error. 
  &amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;http://go.microsoft.com/fwlink/?LinkID=62293&amp;amp;amp;IIS70Error=500,0,0xc0000005,6002&amp;quot;&amp;gt;View more information &amp;amp;raquo;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt; 
  &amp;lt;p&amp;gt;Microsoft Knowledge Base Articles:&amp;lt;/p&amp;gt; 
 &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;294807&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt; 
 
 &amp;lt;/fieldset&amp;gt; 
&amp;lt;/div&amp;gt; 
&amp;lt;/div&amp;gt; 
&amp;lt;/body&amp;gt; 
&amp;lt;/html&amp;gt; 

 
 
  GENERAL_RESPONSE_ENTITY_BUFFER
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  4
  36
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  6375
  0
 
 
  GENERAL_FLUSH_RESPONSE_END
  The operation completed successfully.
 (0x0)
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 


 
  
  0
  1
  0
  2
  0x0
  
  
  
  JOY-PC
 
 
  {00000000-0000-0000-1C00-0080010000F8}
  6375
  495
  500
  0
 
 
  GENERAL_REQUEST_END
 
 
  {D42CF7EF-DE92-473E-8B6C-621EA663113A}
 

</description></item><item><title>Problem getting Python to work in IIS7</title><link>http://forums.iis.net/thread/1919388.aspx</link><pubDate>Sat, 03 Oct 2009 19:13:36 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1919388</guid><dc:creator>ChristianC</dc:creator><slash:comments>3</slash:comments><comments>http://forums.iis.net/thread/1919388.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1919388</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi,&lt;/p&gt;
&lt;p&gt;I am new to Python, and IIS 7.&amp;nbsp; I am able to run Python 2.6.2 from the shell, and have used IIS7 to run PHP scripts and HTML pages.&amp;nbsp; My IIS7 is set up with the CGI feature installed.&amp;nbsp; I don&amp;#39;t think I&amp;#39;m using fastCGI.&amp;nbsp; I think I&amp;#39;m using CGI and ISAPI, but I&amp;#39;m not sure how to tell.&amp;nbsp; I&amp;#39;m trying to get IIS7 to recognize Python as a CGI.&amp;nbsp; On my machine, Python lives in C:\Python26.&amp;nbsp; on IIS, I have the following folder set up - inetpub/wwwroot/ITCS/Celle/Python.&amp;nbsp; I am able to run php scripts from this folder.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;When I added my Script Map I used *.py for the request path, &lt;/p&gt;
&lt;p&gt;C:\Python26\python.exe &amp;quot;%s&amp;quot; %s for the Executable, and Python Programs for the Name.&amp;nbsp; In Handler Mappings under Edit Feature Permissions I made the folder executable after some trouble shooting.&lt;/p&gt;
&lt;p&gt;I am trying to execute a .py file that just prints a very simple html page.&amp;nbsp; Here is the html code:&lt;/p&gt;
&lt;p&gt;print&lt;br /&gt;print &amp;#39;Status: 200 OK&amp;#39;&lt;br /&gt;print &amp;#39;Content-type: text/html&amp;#39;&lt;br /&gt;print&lt;br /&gt;&lt;br /&gt;print &amp;#39;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;Python Sample CGI&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&amp;#39;&lt;br /&gt;print &amp;#39;&amp;lt;body&amp;gt;&amp;#39;&lt;br /&gt;print &amp;#39;&amp;lt;h1&amp;gt;This is a header&amp;lt;/h1&amp;gt;&amp;#39;&lt;br /&gt;&lt;br /&gt;print &amp;#39;&amp;lt;p&amp;gt;&amp;#39; #this is a comment&lt;br /&gt;print &amp;#39;See, this is just like most other HTML.&amp;#39;&lt;br /&gt;print &amp;#39;&amp;lt;/p&amp;gt;&amp;lt;br /&amp;gt;&amp;#39;&lt;br /&gt;print &amp;#39;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&amp;#39;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;At first I did not make the folder executable, and when I tried to run the script, all I got was the html code without the print statements.&amp;nbsp; I then made the folder executable and received an error message complaining about incopmplete headers.&amp;nbsp; I tried a few more times and it seems that now all I am getting is the html code again.&amp;nbsp; The folder is still executable.&amp;nbsp; What am I missing? &lt;/p&gt;
&lt;p&gt;Thanks very much &lt;br /&gt;&lt;/p&gt;</description></item><item><title>fastcgimodule error</title><link>http://forums.iis.net/thread/1918065.aspx</link><pubDate>Thu, 24 Sep 2009 06:40:57 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1918065</guid><dc:creator>kanikajayant</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1918065.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1918065</wfw:commentRss><description>&lt;p&gt;I have
been receiving the following error when i try to access my website:&lt;br /&gt;&lt;br /&gt;Error Summary&lt;br /&gt;HTTP Error 500.0 - Internal Server Error&lt;br /&gt;The page cannot be displayed because an internal server error has occurred.&lt;br /&gt;Detailed Error Information&lt;br /&gt;Module	FastCgiModule&lt;br /&gt;Notification	ExecuteRequestHandler&lt;br /&gt;Handler	php2&lt;br /&gt;Error Code	0x00000000&lt;br /&gt;Requested URL	&lt;a href="http://ccstraining.in/index.php" class="postlink"&gt;http://ccstraining.in:80/index.php&lt;/a&gt;&lt;br /&gt;Physical Path	C:\HostingSpaces\ccstrain\ccstraining.in\wwwroot\index.php&lt;br /&gt;Logon Method	Anonymous&lt;br /&gt;Logon User	Anonymous&lt;br /&gt;&lt;br /&gt;This website is built on a joomla 1,5 platform. I am able to log in to the adminitrator end of the
website using my admin id &amp;amp; password, however, beyond that i am
unable to access anything. Everytime i try to access menus, articles,
media gallery or even global configuration i get this kind of error:&lt;br /&gt;&lt;br /&gt;Error Summary&lt;br /&gt;HTTP Error 500.0 - Internal Server Error&lt;br /&gt;The page cannot be displayed because an internal server error has occurred.&lt;br /&gt;Detailed Error Information&lt;br /&gt;Module	FastCgiModule&lt;br /&gt;Notification	ExecuteRequestHandler&lt;br /&gt;Handler	php2&lt;br /&gt;Error Code	0x00000000&lt;br /&gt;Requested URL	&lt;a href="http://ccstraining.in/administrator/index.php?option=com_content" class="postlink"&gt;http://ccstraining.in:80/administrator/ ... om_content&lt;/a&gt;&lt;br /&gt;Physical Path	C:\HostingSpaces\ccstrain\ccstraining.in\wwwroot\administrator\index.php&lt;br /&gt;Logon Method	Anonymous&lt;br /&gt;Logon User	Anonymous&lt;br /&gt;&lt;br /&gt;The
hosting site says that this is a programming error, and they cannot do
anything about it. Also the programmer is not available now. Please
guide me on what could be the issue here and how can i correct this. Is
it a fastcgimodule error. If so, how can i access this module and
correct it. I am also not able to access phpmyadmin using &lt;a href="http://www.ccstraining.in/phpmyadmin/" class="postlink"&gt;http://www.ccstraining.in/phpmyadmin/&lt;/a&gt; and i get this error:&lt;br /&gt;&lt;br /&gt;Error Summary&lt;br /&gt;HTTP Error 404.0 - Not Found&lt;br /&gt;The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.&lt;br /&gt;Detailed Error Information&lt;br /&gt;Module	IIS Web Core&lt;br /&gt;Notification	MapRequestHandler&lt;br /&gt;Handler	StaticFile&lt;br /&gt;Error Code	0x80070002&lt;br /&gt;Requested URL	&lt;a href="http://www.ccstraining.in/phpmyadmin/" class="postlink"&gt;http://www.ccstraining.in:80/phpmyadmin/&lt;/a&gt;&lt;br /&gt;Physical Path	C:\HostingSpaces\ccstrain\ccstraining.in\wwwroot\phpmyadmin\&lt;br /&gt;Logon Method	Anonymous&lt;br /&gt;Logon User	Anonymous&lt;br /&gt;&lt;br /&gt;I look forward to your response.&lt;br /&gt;Regards&lt;/p&gt;</description></item><item><title>No Configuration Options in IIS Manager</title><link>http://forums.iis.net/thread/1917204.aspx</link><pubDate>Wed, 16 Sep 2009 16:25:07 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1917204</guid><dc:creator>djlightning</dc:creator><slash:comments>4</slash:comments><comments>http://forums.iis.net/thread/1917204.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1917204</wfw:commentRss><description>&lt;p&gt;FastCGI Module is loaded and working just fine (I think).&amp;nbsp; However I have no FastCGI icon for configuring/tuning&amp;nbsp;it.&amp;nbsp; The module is loaded and working just fine with PHP. I also can not find C:\WINDOWS\system32\inetsrv\fcgiext.ini, so I am unsure what is going on.&amp;nbsp; Any help with this would be great.&lt;/p&gt;
&lt;p&gt;Thank you,&lt;/p&gt;
&lt;p&gt;Aaron&lt;/p&gt;
&lt;p&gt;Almost forgot...&lt;/p&gt;
&lt;p&gt;Vista 64 / IIS7&lt;/p&gt;</description></item><item><title>PHP Contact error-500</title><link>http://forums.iis.net/thread/1916816.aspx</link><pubDate>Mon, 14 Sep 2009 07:34:18 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1916816</guid><dc:creator>dmayer</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1916816.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1916816</wfw:commentRss><description>&lt;p&gt;I have recently installed Windows Server 2008 at my house. I have configured PHP (with short tags) MySQL, and phpMyAdmin. I set up everything correctly ( I tested my settings by setting up wordpress) However, on my contact form on my website, I get a 500 error page when I press submit. When I fill partial of the fields in, then it prompts me to fix the &amp;quot;empty&amp;quot; spaces however when I fill in all fields and press submit that&amp;#39;s when I get an 500 error page. Any ideas? This php contact form worked fine through my hostgator account. So I know it&amp;#39;s not the form.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Danny &lt;br /&gt;&lt;/p&gt;</description></item><item><title>FastCGI 1.5 for IIS7</title><link>http://forums.iis.net/thread/1916505.aspx</link><pubDate>Thu, 10 Sep 2009 19:31:59 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1916505</guid><dc:creator>tony_ser</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1916505.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1916505</wfw:commentRss><description>&lt;p&gt;Glad to see FastCGI 1.5 for IIS6.&lt;/p&gt;
&lt;p&gt;Any idea on when there will be a equivalent for IIS7?&lt;/p&gt;
&lt;p&gt;The feature that&amp;nbsp;I am specifically&amp;nbsp;looking&amp;nbsp;for is:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Sending a termination signal to FastCGI processes. &lt;/strong&gt;The extension can be configured to send a termination signal to FastCGI process before terminating it. This enables FastCGI processes to do a clean shutdown before getting killed. &lt;/p&gt;
&lt;p&gt;So that I can do proper clean up.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>PHP Permission Denied Error</title><link>http://forums.iis.net/thread/1916688.aspx</link><pubDate>Fri, 11 Sep 2009 20:18:28 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1916688</guid><dc:creator>joe_it1</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1916688.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1916688</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am getting the following error on my PHP site.&amp;nbsp; I am running this on Windows 2008 64-bit and I downloaded and installed the 5.2.1 non-thread safe build of PHP.&amp;nbsp; I followed the installation outlined on &lt;a class="" title="PHP_WEBSITE_SETUP" href="http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-70/" target="_blank"&gt;this&lt;/a&gt; website. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;I have the directories for the server set-up on a separate server using DFS and I added the path to the website config, as well as setting up an account that can access the site.&amp;nbsp; When I attempt to open the homepage of this site, I am getting a PHP error. &lt;/p&gt;
&lt;p&gt;Warning: require_once(common/php/simplepie.inc): failed to open stream: Permission denied in &lt;a&gt;\\SERVER\SERVERDIR\index.php&lt;/a&gt; on line 62 Fatal error: require_once(): Failed opening required &amp;#39;common/php/simplepie.inc&amp;#39; (include_path=&amp;#39;.;\server\serverdir;\PHP\pear&amp;#39;) in &lt;a&gt;\\SERVER\SERVERDIR\index.php&lt;/a&gt; on line 62 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am at a loss as how to troubleshoot this.&amp;nbsp; If anyone has any suggestions, please let me know.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Joe&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>IgnoreExistingFile and IgnoreExistingDirectories with FastCGI on Windows 2008 and IIS7</title><link>http://forums.iis.net/thread/1916137.aspx</link><pubDate>Tue, 08 Sep 2009 11:51:04 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1916137</guid><dc:creator>dbabb</dc:creator><slash:comments>1</slash:comments><comments>http://forums.iis.net/thread/1916137.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1916137</wfw:commentRss><description>Hello,&lt;p&gt;I tried using the parameters IgnoreExistingFile and
IgnoreExistingDirectories with FastCGI on Windows 2008 and IIS7. This
did not work.&lt;/p&gt;&lt;p&gt; The purpose is to only fall through to the FastCGI
app, setup with the catch all wildcard &amp;quot;*&amp;quot;, in the absence of a
requested file or directory on the site.&lt;/p&gt;&lt;p&gt;These parameters were
supported in IIS6, but it unclear that they are supported in IIS7. Is
there another way to go about it? Is there a certain place where I can
find this information out for myself in the future?&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;u&gt;&lt;b&gt;So I tried updating the following file:&lt;/b&gt;&lt;/u&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;C:\Windows\System32\inetsrv\config\applicationHost.config&lt;/p&gt;&lt;p&gt;&lt;u&gt;&lt;b&gt;Which had this entry:&lt;/b&gt;&lt;/u&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fastCgi&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;application fullPath=&amp;quot;D:\Sites\Development\app\EchoExample.exe&amp;quot; maxInstances=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;environmentVariables&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/environmentVariables&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/application&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fastCgi&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;u&gt;&lt;b&gt;And I changed it to:&lt;/b&gt;&lt;/u&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fastCgi&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;application fullPath=&amp;quot;D:\Sites\Development\app\EchoExample.exe&amp;quot; maxInstances=&amp;quot;1&amp;quot; &lt;b&gt;IgnoreExistingFiles=&amp;quot;1&amp;quot; IgnoreExistingDirectories=&amp;quot;1&amp;quot;&lt;/b&gt;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;environmentVariables&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/environmentVariables&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/application&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fastCgi&amp;gt; &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;u&gt;&lt;b&gt;This results in a 500 error message, and looking at the resulting trace file we see:&lt;/b&gt;&lt;/u&gt;&lt;/p&gt;&lt;p&gt;MODULE_SET_RESPONSE_ERROR_STATUS &lt;br /&gt;ModuleName FastCgiModule &lt;br /&gt;Notification 128 &lt;br /&gt;HttpStatus 500 &lt;br /&gt;HttpReason Internal Server Error &lt;br /&gt;HttpSubStatus 0 &lt;br /&gt;ErrorCode 2147942413 &lt;br /&gt;ConfigExceptionInfo \\?\C:\inetpub\temp\apppools\CKEDEV.config ( 168) :Unrecognized attribute &amp;#39;IgnoreExistingFiles&amp;#39;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;Notification EXECUTE_REQUEST_HANDLER &lt;br /&gt;ErrorCode The data is invalid. (0x8007000d)&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you for taking a look at this!&lt;/p&gt;&lt;p&gt;Take care,&lt;/p&gt;&lt;p&gt;-DTB &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Running PHP with fastcgi on IIS 7 - errors</title><link>http://forums.iis.net/thread/1916161.aspx</link><pubDate>Tue, 08 Sep 2009 15:37:55 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1916161</guid><dc:creator>dhassen</dc:creator><slash:comments>2</slash:comments><comments>http://forums.iis.net/thread/1916161.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1104&amp;PostID=1916161</wfw:commentRss><description>&lt;p&gt;Hi everyone.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How do I get php errors to display on screen (browser). I&amp;#39;ve got my site giving detailed error messages in IIS, I&amp;#39;ve got my php.ini file with error_reporting = E_ALL&amp;nbsp; and display_errors = on&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;And all I get all the time is a 500 error. I just can&amp;#39;t debug anything. I&amp;#39;m on server, localhost, create a very simple php script with an intentional (simple) error and I can&amp;#39;t get the server to tell me a thing.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Help!!!!!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I&amp;#39;m fine with asp.net......... but php on windows.................&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any help would be great thanks&lt;/p&gt;&lt;p&gt;Dave &lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>