<?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>FastCGI Handler</title><link>http://forums.iis.net/1103.aspx</link><description>Questions related to the FastCGI handler shipping for IIS6</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>More information on Error 0x800703e3</title><link>http://forums.iis.net/thread/1451408.aspx</link><pubDate>Thu, 02 Nov 2006 20:58:19 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1451408</guid><dc:creator>mvolo</dc:creator><slash:comments>0</slash:comments><comments>http://forums.iis.net/thread/1451408.aspx</comments><wfw:commentRss>http://forums.iis.net/commentrss.aspx?SectionID=1103&amp;PostID=1451408</wfw:commentRss><description>&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;A number of people have reported receiving an error when using the FastCGI technical preview, which looks like this:&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;h1 style="margin:auto 0in;"&gt;&lt;span&gt;FastCGI Handler Extension &lt;/span&gt;&lt;/h1&gt;&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div align="center" class="MsoNormal" style="margin:0in 0in 0pt;text-align:center;"&gt;&lt;span&gt;&lt;hr align="center" /&gt;&lt;/span&gt;&lt;/div&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;Error &lt;strong&gt;&lt;span style="font-family:Arial;"&gt;0x800703e3&lt;/span&gt;&lt;/strong&gt; occurred processing request.&lt;span style="font-size:12pt;font-family:'Times New Roman';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;This error means ERROR_OPERATION_ABORTED, and occurs whenever the FastCGI handler is unable to communicate with the FastCGI process.&amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;br /&gt;It is most likely to happen in the following cases:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;ol style="margin-top:0in;"&gt;&lt;li class="MsoNormal" style="margin:0in 0in 0pt;tab-stops:list .5in;"&gt;&lt;span&gt;The process configured as the FastCGI application has exited, due to a critical internal error or a crash/access violation.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:10pt;font-family:Arial;"&gt;&lt;strong&gt;&amp;gt; The most likely cause of this issue when using PHP is the presence of the cgi.force_redirect 1, and the fastcgi.impersonate 1 directives in your PHP.INI file.&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:10pt;font-family:Arial;"&gt;Set both of these to 0 to fix this problem - for more information on force_redirect, see &lt;a href="http://us3.php.net/releases/4_1_2_win32.php"&gt;http://us3.php.net/releases/4_1_2_win32.php&lt;/a&gt;.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&amp;gt; Try running the process as a CGI, and make sure it does not crash there as well.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin:0in 0in 12pt;tab-stops:list .5in;"&gt;&lt;span&gt;The process configured as the FastCGI application does not support the FastCGI protocol, or does not support the named pipes transport.&amp;nbsp; Currently the FastCGI technical preview supports named pipe transport only, and does not support the TCP transport which may be used by some FastCGI programs.&lt;br /&gt;&lt;br /&gt;&amp;gt; Currently, we have only tested PHP 4, and 5 and know it to be compatible with FastCGI over named pipes.&amp;nbsp; Other FastCGI programs may not support this transport and therefore are currently unsupported in the tech prieview, although we do plan to support them in the next release. &lt;br /&gt;&lt;br /&gt;&amp;gt; If you are using PHP, make sure you are registering the PHP-CGI.EXE program for PHP 5, and the PHP.EXE program for PHP4.&amp;nbsp; &lt;strong&gt;&lt;span style="font-family:Arial;"&gt;The PHP.EXE process for PHP5 is not a valid FastCGI program.&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin:0in 0in 12pt;tab-stops:list .5in;"&gt;&lt;span&gt;The process configured as the FastCGI application has taken too long to start, or process a request. &lt;br /&gt;&lt;br /&gt;&amp;gt; One workaround here is to increase the request timeout for this application in the &lt;strong&gt;&lt;span style="font-family:Arial;"&gt;fcgiext.ini&lt;/span&gt;&lt;/strong&gt; configuration file, by setting the &lt;strong&gt;&lt;span style="font-family:Arial;"&gt;InstanceTimeout &lt;/span&gt;&lt;/strong&gt;key:&lt;strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;[c:\php\php-cgi.exe]&lt;br /&gt;QueueLength=1000&lt;br /&gt;MaxInstances=4&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:Arial;"&gt;InstanceTimeout=60&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;InstanceMaxRequests=200&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;If you follow these steps, and are still observing an error AND this error does not happen when using CGI to run the application, then please report it on this forum, including the following information:&lt;span style="font-size:12pt;font-family:'Times New Roman';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol style="margin-top:0in;"&gt;&lt;li class="MsoNormal" style="margin:0in 0in 0pt;tab-stops:list .5in;"&gt;&lt;span&gt;The OS version (Windows XP, Windows 2003, Windows Vista, etc)&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin:0in 0in 0pt;tab-stops:list .5in;"&gt;&lt;span&gt;The name and version of the FastCGI program you are using, such as PHP 5.2&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin:0in 0in 0pt;tab-stops:list .5in;"&gt;&lt;span&gt;The steps required to reproduce the issue, such as: request phpinfo.php, observe error X.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;&lt;span style="font-size:12pt;font-family:'Times New Roman';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;We are working on adding more instrumentation to the builds so that its easier to debug these issues.&amp;nbsp; Stay tuned &amp;ndash; &lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;Thanks,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>