<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.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 tags 'IIS News Item' and 'FastCGI'</title><link>http://blogs.iis.net/search/SearchResults.aspx?o=DateDescending&amp;tag=IIS+News+Item,FastCGI&amp;orTags=0</link><description>Search results matching tags 'IIS News Item' and 'FastCGI'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Windows Cache Extension 1.0 for PHP – Beta</title><link>http://blogs.iis.net/ruslany/archive/2009/09/01/windows-cache-extension-1-0-for-php-beta.aspx</link><pubDate>Tue, 01 Sep 2009 17:10:37 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:3381453</guid><dc:creator>Anonymous</dc:creator><cs:applicationKey>ruslany</cs:applicationKey><description>&lt;p&gt;Today IIS team has released the beta of the &lt;a title="Windows Cache Extension for PHP on IIS.NET" href="http://www.iis.net/extensions/WinCacheForPHP" target="_blank"&gt;Windows Cache Extension 1.0 for PHP&lt;/a&gt;. The Windows Cache Extension for PHP is a &lt;a href="http://en.wikipedia.org/wiki/PHP_accelerator"&gt;PHP accelerator&lt;/a&gt;, that is used to increase the speed of PHP applications running on the Windows operating systems. Any PHP application can take advantage of the functionality provided by the Windows Cache Extension for PHP without any code modifications. All that is required is that the extension is enabled and loaded by the PHP engine.&lt;/p&gt;
&lt;h3&gt;Install the Windows Cache Extension 1.0 for PHP &amp;#8211; Beta&lt;/h3&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/web/gallery/install.aspx?appsxml=www.microsoft.com%2Fweb%2Fwebpi%2F2.0%2FWebProductList.xml%3Bwww.microsoft.com%2Fweb%2Fwebpi%2F2.0%2FWebProductList.xml&amp;amp;appid=939%3B949"&gt;&lt;img class="alignnone size-full wp-image-439" style="border: 0px;" title="wpibadgesilver" src="http://ruslany.net/wp-content/uploads/2009/07/wpibadgesilver.png" alt="wpibadgesilver" width="176" height="51" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;or, download:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=6feb7f6a-7dcb-4083-bb7a-d8b22ba2d3d8" target="_blank"&gt;Windows Cache Extension 1.0 for PHP 5.2 &amp;#8211; Beta&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=ba2e0d7a-02ce-42be-a7a3-2baa5d666bf7" target="_blank"&gt;Windows Cache Extension 1.0 for PHP 5.3 &amp;#8211; Beta&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Follow the instructions at &amp;#8220;&lt;a href="http://learn.iis.net/page.aspx/678/using-windows-cache-extension-for-php/"&gt;Using Windows Cache Extension for PHP&lt;/a&gt;&amp;#8221; to install, enable and configure the extension.&lt;span id="more-528"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The extension can only be used with non-thread-safe builds of PHP&lt;/li&gt;
&lt;li&gt;The extension can only be used when IIS is configured to run PHP via FastCGI&lt;/li&gt;
&lt;li&gt;The Windows Cache Extension 1.0 for PHP 5.3 can only be used with the x86 VC9 build of PHP 5.3.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Benefits and Features&lt;/h3&gt;
&lt;p&gt;The extension includes three caches that can be enabled or disabled independently of each other:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;PHP opcode cache&lt;/strong&gt; &amp;#8211; PHP is a script processing engine, which reads an input stream of data that contains text and/or PHP instructions and produces another stream of data, most commonly in the HTML format. This means that on a web server the PHP engine reads, parses, compiles and executes a PHP script each time that it is requested by a Web client. The reading, parsing and compilation operations put additional load on the web server&amp;#8217;s CPU and file system and thus affect the overall performance of a PHP web application. The PHP bytecode (opcode) cache is used to store the compiled script bytecode in shared memory so that it can be re-used by PHP engine for subsequent executions of the same script.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;File cache&lt;/strong&gt; &amp;#8211; Even with the PHP bytecode cache enabled, the PHP engine has to accesses the script files on a file system. When PHP scripts are stored on a remote UNC file share, the file operations introduce a significant performance overhead. The Windows Cache Extension for PHP includes a file cache that is used to store the content of the PHP script files in shared memory, which reduces the amount of file system operations performed by PHP engine.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Relative file path cache&lt;/strong&gt; &amp;#8211; PHP scripts very often include or operate with files by using relative file paths. Every relative file path has to be converted to an absolute file path by the PHP engine. When a PHP application uses many PHP files and accesses them by relative paths, the operation of resolving relative paths to absolute paths may negatively impact the application&amp;#8217;s performance. The Windows Cache Extension for PHP provides a Relative File Path cache, which is used to store the mappings between relative and absolute file paths, thereby reducing the number of relative path resolutions that the PHP engine has to perform.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;More information&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.iis.net/extensions/WinCacheForPHP" target="_blank"&gt;Windows Cache Extension for PHP on IIS.NET&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://learn.iis.net/page.aspx/678/using-windows-cache-extension-for-php/" target="_blank"&gt;Using Windows Cache Extension for PHP&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Use the &lt;a href="http://forums.iis.net/1164.aspx"&gt;Windows Cache Extension for PHP Forum&lt;/a&gt; to ask questions, report bugs and provide feature suggestions&lt;/p&gt;
</description></item><item><title>Getting both FastCGI module and AppPool CPULimit to work</title><link>http://blogs.iis.net/ksingla/archive/2009/07/02/getting-both-fastcgi-module-and-apppool-cpulimit-to-work.aspx</link><pubDate>Thu, 02 Jul 2009 23:29:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:3272385</guid><dc:creator>ksingla</dc:creator><cs:applicationKey>ksingla</cs:applicationKey><description>&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;FastCGI module available in IIS 7.0 did not work when CPULimit for the application pool was enabled. This was because when CPULimit feature was enabled WAS uses job objects to track CPU usage of worker processes. WAS keeps a job object for each application pool and all worker processes which belong to that application pool are made part of that job object. FastCGI module uses job objects to make sure that there are no orphan child processes left when worker process goes away. Note that FastCGI requires a per process job object while WAS requires a per application pool job object. For this reason, it was not possible to make WAS take care of killing FastCGI child processes when worker process dies. Because a process can only be part of one job object on windows and also the fact that a child process becomes part of the job object if parent process is already part of existing job object, FastCGI module was unable to make child processes part of another job object when CPULimit was turned on and used to fail with error &lt;I&gt;“Unable to place a FastCGI process in a JobObject. Try disabling the Application Pool CPU Limit feature”&lt;/I&gt;.&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Customers who used CPULimit feature complained about limitation. We recommended customers to use WSRM (windows system resource manager) but some wanted to continue using CPULimit functionality. Due to requests from these customers we have fixed this issue in Windows 7 (Win2K8 R2) and also released a QFE for Win2K8 release. In the fix, WAS lets FastCGI make its child processes part of other job object. Also FastCGI module keeps track of CPU usage of its child processes and periodically report CPU usage by children back to WAS which then adds that to the application pool CPU usage count.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;FONT face=Calibri size=3&gt;You can read more about this &lt;/FONT&gt;&lt;A class="" title=/mailant/archive/2008/04/29/managing-cpu-utilization-for-iis-worker-processes-that-use-fastcgi-module.aspx href="http://blogs.iis.net/mailant/archive/2008/04/29/managing-cpu-utilization-for-iis-worker-processes-that-use-fastcgi-module.aspx" mce_href="http://blogs.iis.net/mailant/archive/2008/04/29/managing-cpu-utilization-for-iis-worker-processes-that-use-fastcgi-module.aspx"&gt;&lt;FONT face=Calibri size=3&gt;here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt; and &lt;/FONT&gt;&lt;A class="" title=http://support.microsoft.com/kb/970208 href="http://support.microsoft.com/kb/970208" mce_href="http://support.microsoft.com/kb/970208"&gt;&lt;FONT face=Calibri size=3&gt;here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt;. QFE can be downloaded from &lt;/FONT&gt;&lt;A class="" title=http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=970208&amp;amp;kbln=en-us href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=970208&amp;amp;kbln=en-us" mce_href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=970208&amp;amp;kbln=en-us"&gt;&lt;FONT face=Calibri size=3&gt;here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Hope this helps.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Kanwal&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description></item><item><title>FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 – RC</title><link>http://blogs.iis.net/ruslany/archive/2009/06/24/fastcgi-extension-1-5-for-iis-6-0-and-iis-5-1-rc.aspx</link><pubDate>Wed, 24 Jun 2009 22:38:07 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:3256454</guid><dc:creator>Anonymous</dc:creator><cs:applicationKey>ruslany</cs:applicationKey><description>&lt;p&gt;Today IIS team has released the FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 &amp;#8211; Release Candidate. This version is based on FastCGI Extension 1.0 and it adds several important improvements and features. The release is believed to have a quality level suitable for production deployments.&lt;/p&gt;
&lt;h3&gt;Install the Release Candidate of FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1&lt;/h3&gt;
&lt;p&gt;&lt;a href="http://go.microsoft.com/?linkid=9662547"&gt;&lt;img class="alignnone size-full wp-image-419" style="border: 0px;" title="Install FastCGI 1.5 RC with Web Platform Installer" src="http://ruslany.net/wp-content/uploads/2009/06/wpiBadgeSilver.png" alt="wpiBadgeSilver" width="176" height="51" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;or, download:&lt;/p&gt;
&lt;p&gt;&lt;a title="Download FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 (x86)" href="http://go.microsoft.com/?linkid=9671293"&gt;FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 &amp;#8211; RC (x86)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title="Download FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 (x64)" href="http://go.microsoft.com/?linkid=9671294"&gt;FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 &amp;#8211; RC (x64)&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Upgrade from FastCGI Extension 1.0 and 1.5 Beta releases&lt;/h3&gt;
&lt;p&gt;If you already have installed FastCGI Extension v1.0 or FastCGI Extesnion v1.5 Beta, then the installation package will upgrade it to version 1.5 &amp;#8211; RC. All the related IIS configuration and settings in fcgiext.ini file will be preserved during upgrade. Note that during upgrade from v1.0 the comments in fcgiext.ini will not be updated and will not mention new configuration settings. However the new settings can still be used after upgrade.&lt;/p&gt;
&lt;p&gt;&lt;span id="more-418"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;New Features&lt;/h3&gt;
&lt;p&gt;The FastCGI Extension 1.5 includes these new features:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Monitor changes to a file&lt;/strong&gt;. The extension can be configured to listen for file change notifications on a specific file and when that file changes, the extension will recycle FastCGI processes for the process pool. This feature can be used to recycle PHP processes when changes to php.ini file occur.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Real-time tuning of MaxInstances setting&lt;/strong&gt;. This MaxInstances setting dictates the maximum number of FastCGI processes which can be launched for each application pool. If it is set to 0 then FastCGI extension will automatically adjust the number of instances up or down every few seconds based on the system load and number of requests waiting in the queue. &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;STDERR stream handling&lt;/strong&gt;. There are several options of how the extension can handle text sent by FastCGI application on STDERR. The extension can send the error data as a failure response to the HTTP client or it can ignore the error and send whatever was received on STDOUT as a response with 200 status code.&lt;/li&gt;
&lt;li&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;/li&gt;
&lt;li&gt;&lt;strong&gt;_FCGI_X_PIPE_ environment variable&lt;/strong&gt;. This variable is set by FastCGI extension and it contains the name of the named pipe that is used for communication between the extension and FastCGI process.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Relaxed enforcement of response headers syntax&lt;/strong&gt;. The FastCGI extension has less strict enforcements for the correctness of the response headers.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Changes since Beta release&lt;/h3&gt;
&lt;p&gt;The following changes and bug fixes has been made to the extension since the beta release:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The fix for a bug in how the semicolons are handled when reading configuration settings from fcgiconfig.ini file. Now, if you need to specify a semicolon inside of a configuration setting you can escape it with &amp;#8220;/&amp;#8221; (forward slash) symbol. This bug was reported on &lt;a href="http://forums.iis.net/t/1157543.aspx"&gt;FastCGI forum&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;If the SignalBeforeTerminateSeconds setting is more than 0, then FastCGI extension does not lock the file, specified in MonitorChangesTo setting, while processing the change notification and recycling the FastCGI processes.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;More information&lt;/h3&gt;
&lt;p&gt;Refer to the following resources for more information&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a title="New Features in FastCGI Extension 1.5" href="http://learn.iis.net/page.aspx/248/configuring-fastcgi-extension-for-iis60/#FastCGI_Extension_1.5"&gt;New Configuration Settings in FastCGI Extension 1.5&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://learn.iis.net/page.aspx/248/configuring-fastcgi-extension-for-iis60/"&gt;FastCGI extension configuration settings&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://learn.iis.net/page.aspx/247/using-fastcgi-to-host-php-applications-on-iis-60/"&gt;Using FastCGI Extension to run PHP applications on IIS5.1 and 6.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://php.iis.net"&gt;PHP community portal on IIS.NET &lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also, be sure to visit the &lt;a title="FastCGI Handler Forum" href="http://forums.iis.net/1103.aspx" target="_blank"&gt;FastCGI Handler forum&lt;/a&gt; on IIS.NET if you have run into any problems when using the extension or have questions or suggestions.&lt;/p&gt;
</description></item><item><title>FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 - Beta</title><link>http://blogs.iis.net/ruslany/archive/2009/04/20/fastcgi-extension-1-5-for-iis-6-0-and-iis-5-1-beta.aspx</link><pubDate>Mon, 20 Apr 2009 22:11:12 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:3105881</guid><dc:creator>Anonymous</dc:creator><cs:applicationKey>ruslany</cs:applicationKey><description>&lt;p&gt;Today IIS team has released the FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 - Beta. This version is based on FastCGI Extension 1.0 and it adds several important improvements and features.&lt;/p&gt;
&lt;h3&gt;Install the Beta of FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1&lt;/h3&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/web/gallery/install.aspx?appsxml=www.microsoft.com%2Fweb%2Fwebpi%2F2.0%2FWebProductList.xml%3Bwww.microsoft.com%2Fweb%2Fwebpi%2F2.0%2FWebProductList.xml&amp;amp;appid=604%3B605"&gt;&lt;img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="Install FastCGI with Web PI" src="http://ruslany.net/wp-content/uploads/2009/04/wpibadgesilver1.png" border="0" alt="Install FastCGI with Web PI" width="176" height="51" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;or, download:&lt;/p&gt;
&lt;p&gt;&lt;a title="Download FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 (x86)" href="http://go.microsoft.com/?linkid=9662504"&gt;FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 (x86)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title="Download FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 (x64)" href="http://go.microsoft.com/?linkid=9662503"&gt;FastCGI Extension 1.5 for IIS 6.0 and IIS 5.1 (x64)&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Upgrade from FastCGI Extension 1.0 release&lt;/h3&gt;
&lt;p&gt;If you already have FastCGI Extension version 1.0 installed then the installation package will upgrade it to version 1.5. All the related IIS configuration and settings in fcgiext.ini file will be preserved during upgrade. Note that during upgrade the comments in fcgiext.ini will not be updated and will not mention new configuration settings. However the new settings can still be used after upgrade.&lt;span id="more-330"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;New Features&lt;/h3&gt;
&lt;p&gt;The FastCGI Extension 1.5 includes these new features:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Monitor changes to a file&lt;/strong&gt;. The extension can be configured to listen for file change notifications on a specific file and when that file changes, the extension will recycle FastCGI processes for the process pool. This feature can be used to recycle PHP processes when changes to php.ini file occur.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Real-time tuning of MaxInstances setting&lt;/strong&gt;. This MaxInstances setting dictates the maximum number of FastCGI processes which can be launched for each application pool. If it is set to 0 then FastCGI extension will automatically adjust the number of instances up or down every few seconds based on the system load and number of requests waiting in the queue. &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;STDERR stream handling&lt;/strong&gt;. There are several options of how the extension can handle text sent by FastCGI application on STDERR. The extension can send the error data as a failure response to the HTTP client or it can ignore the error and send whatever was received on STDOUT as a response with 200 status code.&lt;/li&gt;
&lt;li&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 process to do a clean shutdown before getting killed.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;_FCGI_X_PIPE_ environment variable&lt;/strong&gt;. This variable is set by FastCGI extension and it contains the name of the named pipe that is used for communication between the extension and FastCGI process.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Relaxed enforcement of response headers syntax&lt;/strong&gt;. The FastCGI extension has less strict enforcements for the correctness of the response headers.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;More information&lt;/h3&gt;
&lt;p&gt;Refer to the following resources for more information&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a title="New Features in FastCGI Extension 1.5" href="http://learn.iis.net/page.aspx/248/configuring-fastcgi-extension-for-iis60/#FastCGI_Extension_1.5"&gt;New Configuration Settings in FastCGI Extension 1.5&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://learn.iis.net/page.aspx/248/configuring-fastcgi-extension-for-iis60/"&gt;FastCGI extension configuration settings&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://learn.iis.net/page.aspx/247/using-fastcgi-to-host-php-applications-on-iis-60/"&gt;Using FastCGI Extension to run PHP applications on IIS5.1 and 6.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://php.iis.net"&gt;PHP community portal on IIS.NET &lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also, be sure to visit the &lt;a title="FastCGI Handler Forum" href="http://forums.iis.net/1103.aspx" target="_blank"&gt;FastCGI Handler forum&lt;/a&gt; on IIS.NET if you have run into any problems when using the extension or have questions or suggestions.&lt;/p&gt;
</description></item><item><title>Find New IIS7 Extensions at http://www.iis.net/extensions/</title><link>http://blogs.iis.net/bills/archive/2008/11/11/find-new-iis7-extensions-at-http-www-iis-net-extensions.aspx</link><pubDate>Tue, 11 Nov 2008 22:55:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2739094</guid><dc:creator>bills</dc:creator><cs:applicationKey>bills</cs:applicationKey><description>&lt;P&gt;I’m happy to announce that IIS7 Extensions have found their home at &lt;A href="http://www.iis.net/extensions"&gt;http://www.iis.net/extensions&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Every since IIS7 shipped 9 months ago, the IIS team has been cranking away adding new features to the platform.&amp;nbsp; Last time I blogged about &lt;A href="http://blogs.iis.net/bills/archive/2008/06/02/how-iis-ships-software.aspx" mce_href="http://blogs.iis.net/bills/archive/2008/06/02/how-iis-ships-software.aspx"&gt;how we do this&lt;/A&gt;, I realized we didn’t have a single place to learn about all of them, so I kicked off an effort within the team to create this.&amp;nbsp; Now that the pages are up, it is amazing to see how many new capabilities are already available on top of IIS7…which all by itself had more new features than any other IIS release in the history of the product.&amp;nbsp; It is a testament to not only the ingenuity and hard work of the IIS team, but a real validation that IIS7 is not just a Web server, it is a server platform.&amp;nbsp; All of these new features are built on top of public extensibility points that any developer can use, and provide a seamless runtime, configuration and administration experience that looks and feels like they were built into the product to begin with!&amp;nbsp; Here they are:&lt;/P&gt;
&lt;P&gt;Landing page:&amp;nbsp; &lt;A href="http://www.iis.net/extensions"&gt;http://www.iis.net/extensions&lt;/A&gt; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/AdministrationPack href="http://www.iis.net/AdministrationPack" mce_href="http://www.iis.net/AdministrationPack"&gt;http://www.iis.net/AdministrationPack&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/ApplicationRequestRouting href="http://www.iis.net/ApplicationRequestRouting" mce_href="http://www.iis.net/ApplicationRequestRouting"&gt;http://www.iis.net/ApplicationRequestRouting&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/BitRateThrottling href="http://www.iis.net/BitRateThrottling" mce_href="http://www.iis.net/BitRateThrottling"&gt;http://www.iis.net/BitRateThrottling&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/DatabaseManager href="http://www.iis.net/DatabaseManager" mce_href="http://www.iis.net/DatabaseManager"&gt;http://www.iis.net/DatabaseManager&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/FTP href="http://www.iis.net/FTP" mce_href="http://www.iis.net/FTP"&gt;http://www.iis.net/FTP&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/IISManager href="http://www.iis.net/IISManager" mce_href="http://www.iis.net/IISManager"&gt;http://www.iis.net/IISManager&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/PowerShell href="http://www.iis.net/PowerShell" mce_href="http://www.iis.net/PowerShell"&gt;http://www.iis.net/PowerShell&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/SmoothStreaming href="http://www.iis.net/SmoothStreaming" mce_href="http://www.iis.net/SmoothStreaming"&gt;http://www.iis.net/SmoothStreaming&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/URLRewrite href="http://www.iis.net/URLRewrite" mce_href="http://www.iis.net/URLRewrite"&gt;http://www.iis.net/URLRewrite&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/UrlScan href="http://www.iis.net/UrlScan" mce_href="http://www.iis.net/UrlScan"&gt;http://www.iis.net/UrlScan&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/WebDeploymentTool href="http://www.iis.net/WebDeploymentTool" mce_href="http://www.iis.net/WebDeploymentTool"&gt;http://www.iis.net/WebDeploymentTool&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/WebPlaylists href="http://www.iis.net/WebPlaylists" mce_href="http://www.iis.net/WebPlaylists"&gt;http://www.iis.net/WebPlaylists&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.iis.net/WebDAV href="http://www.iis.net/WebDAV" mce_href="http://www.iis.net/WebDAV"&gt;http://www.iis.net/WebDAV&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Check out the &lt;A href="http://www.iis.net/extensions" mce_href="http://www.iis.net/extensions"&gt;more than a dozen new features&lt;/A&gt; available today!&amp;nbsp; Over the next few weeks we’ll be adding video demos of each feature and more new content.&amp;nbsp; Stay tuned for many cool new features to come!&lt;/P&gt;</description></item><item><title>Update for IIS 7.0 FastCGI module</title><link>http://blogs.iis.net/ruslany/archive/2008/08/26/update-for-iis-7-0-fastcgi-module.aspx</link><pubDate>Wed, 27 Aug 2008 02:10:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2611007</guid><dc:creator>Anonymous</dc:creator><cs:applicationKey>ruslany</cs:applicationKey><description>&lt;P&gt;IIS team has recently released an update for IIS 7.0 FastCGI module that fixes compatibility problems with several popular PHP applications. In particular, the update changes the behavior of FastCGI module in the following ways:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;REQUEST_URI server variable set by FastCGI module now includes query string and path info. Previously, lack of the query string in this server variable caused the popular CMS application &lt;A href="http://drupal.org/" target=_blank mce_href="http://drupal.org"&gt;Drupal&lt;/A&gt; to &lt;A title="Drupal does not work with FastCGI" href="http://drupal.org/node/249370" target=_blank mce_href="http://drupal.org/node/249370"&gt;not work with FastCGI&lt;/A&gt; on IIS 7.0 
&lt;LI&gt;REQUEST_URI server variable now contains the originally requested URL path before any URL rewriting was performed. Prior to this fix, the server variable used to contain a final rewritten URL, which caused problems when using URL rewriting to enable &lt;A title="Wordpress pretty permalinks" href="http://codex.wordpress.org/Using_Permalinks" target=_blank mce_href="http://codex.wordpress.org/Using_Permalinks"&gt;“pretty permalinks”&lt;/A&gt; for popular blog engine &lt;A title=Wordpress href="http://wordpress.org/" target=_blank mce_href="http://wordpress.org"&gt;Wordpress&lt;/A&gt;. &lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;Note that above mentioned problems do not exist in &lt;A title="FastCGI extension" href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1521" target=_blank mce_href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1521"&gt;IIS 6.0 FastCGI Extension&lt;/A&gt;, which always has been setting the REQUEST_URI server variable correctly.&lt;/P&gt;
&lt;P&gt;The update is available for download from the following locations:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A title="Update for Windows Server 2008" href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=1&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3dd0343911-1775-4aef-8c99-5f13862ac386%26DisplayLang%3den" target=_blank mce_href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=1&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3dd0343911-1775-4aef-8c99-5f13862ac386%26DisplayLang%3den"&gt;Update for Windows Server 2008&lt;/A&gt; 
&lt;LI&gt;&lt;A title="Update for Windows Server 2008 x64 Edition" href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=3&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3d70278393-3291-4aa1-870b-0e9b0907bddf%26DisplayLang%3den" target=_blank mce_href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=3&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3d70278393-3291-4aa1-870b-0e9b0907bddf%26DisplayLang%3den"&gt;Update for Windows Server 2008 x64 Edition&lt;/A&gt; 
&lt;LI&gt;&lt;A title="Update for Windows Server 2008 for Itanium-based Systems" href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=5&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3d98e06637-0f00-45d5-83c5-ed1b41fd6a7b%26DisplayLang%3den" target=_blank mce_href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=5&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3d98e06637-0f00-45d5-83c5-ed1b41fd6a7b%26DisplayLang%3den"&gt;Update for Windows Server 2008 for Itanium-based Systems&lt;/A&gt; 
&lt;LI&gt;&lt;A title="Update for Windows Vista" href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=2&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3d19600729-8470-4956-a276-200450d814bd%26DisplayLang%3den" target=_blank mce_href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=2&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3d19600729-8470-4956-a276-200450d814bd%26DisplayLang%3den"&gt;Update for Windows Vista SP1&lt;/A&gt; 
&lt;LI&gt;&lt;A title="Update for Windows Vista for x64 based Systems" href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=4&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3dc7066c3b-dcf7-4441-87bc-f7dcb51067d0%26DisplayLang%3den" target=_blank mce_href="http://www.microsoft.com/downloads/info.aspx?na=22&amp;amp;p=4&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=&amp;amp;u=%2fdownloads%2fdetails.aspx%3fFamilyID%3dc7066c3b-dcf7-4441-87bc-f7dcb51067d0%26DisplayLang%3den"&gt;Update for Windows Vista SP1 for x64 based Systems&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Warning:&lt;/STRONG&gt; if your PHP application was coded in a way so that it relied on the REQUEST_URI server variable to contain the requested URL without a query string or to contain the final rewritten URL, then installing this update may break your application. Before applying the update, please make sure that your application does not rely on incorrect behavior of FastCGI module. 
&lt;P&gt;&lt;STRONG&gt;Acknowledgements&lt;/STRONG&gt;: I want to thank IIS team members (&lt;A href="http://forums.iis.net/members/anilr.aspx" target=_blank mce_href="http://forums.iis.net/members/anilr.aspx"&gt;Anil Ruia&lt;/A&gt;, &lt;A href="http://blogs.iis.net/wonyoo/default.aspx" target=_blank mce_href="http://blogs.iis.net/wonyoo/default.aspx"&gt;Won Yoo&lt;/A&gt;, Yamini Jagadeesan) for providing this update and Zend Technologies team (&lt;A title="Stas Malyshev" href="http://php100.wordpress.com/" target=_blank mce_href="http://php100.wordpress.com/"&gt;Stanislav Malyshev&lt;/A&gt;) for validating the changes in FastCGI module.&lt;/P&gt;</description></item><item><title>Official Release of FastCGI Extension for IIS6</title><link>http://blogs.iis.net/drobbins/archive/2007/11/12/official-release-of-fastcgi-extension-for-iis6.aspx</link><pubDate>Mon, 12 Nov 2007 19:17:32 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2002186</guid><dc:creator>drobbins</dc:creator><cs:applicationKey>drobbins</cs:applicationKey><description>&lt;p&gt;Today at &lt;a href="http://www.mseventseurope.com/teched/07/itforum/news/Pages/day1.aspx"&gt;TechEd IT Forum in Barcelona&lt;/a&gt;, Bob Kelly announced the &lt;a href="http://www.iis.net/php"&gt;official release of the FastCGI Extension for IIS 6.0&lt;/a&gt;. This means customers now have reliable, high-performance hosting for PHP and other CGI-based applications on production Windows servers with full support from Microsoft.&lt;/p&gt;  &lt;p&gt;The FastCGI extension allows IIS to reuse CGI processes for multiple requests which greatly improves the performance of PHP applications on Windows. This is exciting as many people at Microsoft have been working hard to make sure popular PHP applications work great on Windows. &lt;/p&gt;  &lt;p&gt;Another great part of this news is that Zend has validated their &lt;a href="http://www.zend.com/products/zend_core/windows_preview"&gt;Zend Core&lt;/a&gt; offering, a certified and supported version of PHP, on this release of FastCGI. &lt;/p&gt;  &lt;p&gt;There are lots of resources on IIS.net to help get you started with FastCGI.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1521"&gt;Download the FastCGI for IIS 6.0 on Windows Server 2003&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.iis.net/fastcgi/configuration"&gt;Information on how to Configure FastCGI for IIS 6.0&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://iis.net/php"&gt;Steps for Configuring Popular PHP Applications on Windows&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsoft.com/sql/technologies/php/default.mspx"&gt;Download the native SQL Server 2005 Driver for PHP on Windows&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;And don't forget to look forward to the &lt;a href="http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/PHP/Using-FastCGI-to-host-PHP-applications-on-IIS7"&gt;great support for PHP on IIS 7.0&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>IIS7 in the Community...11/7/2007</title><link>http://blogs.iis.net/bills/archive/2007/11/07/iis7-in-the-community-11-7-2007.aspx</link><pubDate>Wed, 07 Nov 2007 22:32:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1995416</guid><dc:creator>bills</dc:creator><cs:applicationKey>bills</cs:applicationKey><description>&lt;p&gt;The IIS7 community is growing!&amp;#xA0; There have been a number of really cool things going on in the community around IIS7.&amp;#xA0; Here are some of my favorites:&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;New Web Control Panels for IIS7!&lt;/h3&gt;  &lt;p&gt;I was very excited to see two new control panels for IIS7 hit the market this past month.&amp;#xA0; I was excited to see the DotNetPanel guys be one of the first to market with an update of their &lt;a href="http://www.dotnetpanel.com/DotNetPanel/Overview.aspx" target="_blank"&gt;DotNetPanel product&lt;/a&gt; for IIS7.&amp;#xA0; They have a &lt;a href="http://www.dotnetpanel.com/DotNetPanel/Demo.aspx" target="_blank"&gt;demo&lt;/a&gt; on their site you can try out now, or go &lt;a href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1541" target="_blank"&gt;download&lt;/a&gt; a copy for free (up to 10 sites!)&amp;#xA0; The reviews on the download page look good.&amp;#xA0; I was also excited when big-name vendor &lt;a href="http://swsoft.com" target="_blank"&gt;SWSoft&lt;/a&gt; released an update to their &lt;a href="http://download1.swsoft.com/Plesk/Plesk8.3/beta/Windows/plesk_8.3.0_beta071012.14.htm" target="_blank"&gt;Plesk product for Windows&lt;/a&gt; v 8.3 beta which also supports IIS7.&amp;#xA0; These guys are used all over the place in giant Web hosters, and having IIS7 support pre-launch is a really great sign.&amp;#xA0; You can download their latest beta &lt;a href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1540" target="_blank"&gt;here&lt;/a&gt;.&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;New IIS7 Administration Tool Add-ons!&lt;/h3&gt;  &lt;p&gt;Rakki of the IIS/ASP.NET support team has published some really great IIS7 Admin Tool extensions that you may want to check out, including a new &lt;a href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;i=1552&amp;amp;g=6" target="_blank"&gt;backup/restore UI extension&lt;/a&gt;, an &lt;a href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;i=1554&amp;amp;g=6" target="_blank"&gt;IISRESET UI&lt;/a&gt; feature, and a diagnostics UI Module (called &lt;a href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;i=1461&amp;amp;g=6" target="_blank"&gt;FREBUIModule&lt;/a&gt;).&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;How to install MySQL, PHP and PHPMyAdmin on IIS&lt;/h3&gt;  &lt;p&gt;With the introduction of &lt;a href="http://iis.net/php" target="_blank"&gt;FastCGI&lt;/a&gt; on IIS, running PHP on Windows is now a great experience.&amp;#xA0; I ran across &lt;a href="http://shabbir.hassanally.net/blog/2007/10/11/howto-installing-mysql-php-and-phpmyadmin-on-iis-part-1-mysql-server/" target="_blank"&gt;this great blog post by Shabbir&lt;/a&gt; which provides step-by-step instructions for how to get IIS, PHP, MySQL and PHPMyAdmin up and running.&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;Running 32bit and 64bit Side-by-Side in IIS7&lt;/h3&gt;  &lt;p&gt;For some odd reason I thought everyone already knew this, but I saw it pop up on blogosphere and quite a few people have cross-posted so I thought I better as well.&amp;#xA0; Yes, it is now possible with IIS7 to run 32bit and 64bit AppPools side-by-side.&amp;#xA0; Check out Rakki's blog for the scoop:&amp;#xA0; &lt;a title="http://blogs.msdn.com/rakkimk/archive/2007/11/03/iis7-running-32-bit-and-64-bit-asp-net-versions-at-the-same-time-on-different-worker-processes.aspx" href="http://blogs.msdn.com/rakkimk/archive/2007/11/03/iis7-running-32-bit-and-64-bit-asp-net-versions-at-the-same-time-on-different-worker-processes.aspx"&gt;http://blogs.msdn.com/rakkimk/archive/2007/11/03/iis7-running-32-bit-and-64-bit-asp-net-versions-at-the-same-time-on-different-worker-processes.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;Making PHP Applications Great on IIS7&lt;/h3&gt;  &lt;p&gt;Wow, &lt;a href="http://blogs.iis.net/drobbins/archive/2007/11/02/making-php-applications-great-on-ii7.aspx" target="_blank"&gt;this is a killer post by Drew Robbins&lt;/a&gt; on IIS7 extensibility in action for a PHP application.&amp;#xA0; He shows off running Qdig, a popular PHP photo applications, using built-in forms authentication and the integrated pipeline, extensible configuration support, and a UI extension.&amp;#xA0; It rocks!&lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;Fun with http.sys caching&lt;/h3&gt;  &lt;p&gt;This is a &lt;a href="http://blogs.iis.net/rickjames/archive/2007/11/01/fun-with-http-sys-caching.aspx" target="_blank"&gt;great blog post by Rick James&lt;/a&gt;, IIS developer, on how the http.sys cache works and the kinds of performance benefits it provides.&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;Book Review: IIS7 Implementation and Administration&lt;/h3&gt;  &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/Blog/post/2007/11/Book-Review-IIS7-Implementation-and-Administration.aspx" target="_blank"&gt;Andrew Westgarth provides a nice write-up&lt;/a&gt; of &lt;a href="http://www.amazon.com/Microsoft-IIS-Implementation-Administration-Mastering/dp/0470178930/ref=pd_bbs_sr_1/104-5872866-8395930?ie=UTF8&amp;s=books&amp;qid=1194503393&amp;sr=8-1"&gt;this new book by John Paul Mueller&lt;/a&gt;.&amp;#xA0; If you're interested in purchasing a book on IIS7, check out this write-up and the &lt;a href="http://amazon.com/s/ref=nb_ss_gw/102-6893754-4991339?url=search-alias%3Daps&amp;amp;field-keywords=iis7" target="_blank"&gt;growing list of IIS7 books on Amazon.com&lt;/a&gt;.&amp;#xA0; I'm anxiously waiting for my copy of &lt;a href="  http://www.amazon.com/Professional-IIS-ASP-NET-Integrated-Programming/dp/0470152532/ref=pd_bbs_sr_3/103-2852032-0985408?ie=UTF8&amp;amp;s=books&amp;amp;qid=1194474192&amp;amp;sr=8-3" target="_blank"&gt;this 700 page monster&lt;/a&gt;.&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;Finding your way around IIS7 configuration sections with AppCmd&lt;/h3&gt;  &lt;p&gt;&lt;a href="http://blogs.iis.net/mvolo/archive/2007/10/31/finding-your-way-around-iis-7-configuration-sections-with-appcmd.aspx" target="_blank"&gt;Mike Volodarsky writes up a great post&lt;/a&gt; on how to figure out the dozens of IIS (hundreds if you count ASP.NET) configuration sections and how to use them.&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;How to install VMWare Web Management on IIS7&lt;/h3&gt;  &lt;p&gt;&lt;a href="http://blog.angrypets.com/2007/11/vmware-web-mana.html" target="_blank"&gt;This great post on AngryPets&lt;/a&gt; shows how to setup VMWare's Web Management Application for IIS7 and Windows Server 2008. &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;h3&gt;How to install IIS7 and PHP with FastCGI - ScreenCast&lt;/h3&gt;  &lt;p&gt;And last, but not least, Scott Hanselman published &lt;a href="http://www.hanselman.com/blog/ScreencastHowToIIS7AndPHPWithFastCGI.aspx" target="_blank"&gt;this great screencast&lt;/a&gt; of how to get PHP working on IIS7.&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0;&lt;/p&gt;  &lt;p&gt;Happy Reading!&lt;/p&gt;</description></item><item><title>Great Screencast on IIS7 and PHP with FastCGI</title><link>http://blogs.iis.net/drobbins/archive/2007/10/24/great-screencast-on-iis7-and-php-with-fastcgi.aspx</link><pubDate>Wed, 24 Oct 2007 21:03:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1972389</guid><dc:creator>drobbins</dc:creator><cs:applicationKey>drobbins</cs:applicationKey><description>&lt;P&gt;Scott Hanselman produced an &lt;A title="awesome screencast on configuring IIS7 and PHP with FastCGI" href="http://www.hanselman.com/blog/CommentView.aspx?guid=b8f916e7-bfd0-4401-848d-17c6fa96d7a6#commentstart" mce_href="http://www.hanselman.com/blog/CommentView.aspx?guid=b8f916e7-bfd0-4401-848d-17c6fa96d7a6#commentstart"&gt;awesome screencast on configuring IIS7 and PHP with FastCGI&lt;/A&gt;. He also does some live performance testing of the Qdig application using CGI, FastCGI and the new kernel-mode caching in IIS7.&lt;/P&gt;
&lt;P&gt;From Scott's blog:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;EM&gt;You can watch the video/screencast on the &lt;/EM&gt;&lt;A href="http://www.hanselman.com/silverlight/iis7/fastcgiphp" mce_href="http://www.hanselman.com/silverlight/iis7/fastcgiphp"&gt;&lt;EM&gt;new Hanselman Silverlight Player&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; (thanks Tim!) or &lt;/EM&gt;&lt;A href="http://download.microsoft.com/download/3/6/e/36e3b1a6-45a6-4089-8116-367d42942454/IIS7-1-FastCGI%20Screencast.wmv"&gt;&lt;EM&gt;download the WMV directly&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;. If you guys want more IIS7 videos in detail, give me feedback in the comments and I'll see what we can do about putting together a series over on &lt;/EM&gt;&lt;A href="http://www.iis.net/" mce_href="http://www.iis.net"&gt;&lt;EM&gt;http://www.iis.net&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://www.hanselman.com/blog/CommentView.aspx?guid=b8f916e7-bfd0-4401-848d-17c6fa96d7a6#commentstart" mce_href="http://www.hanselman.com/blog/CommentView.aspx?guid=b8f916e7-bfd0-4401-848d-17c6fa96d7a6#commentstart"&gt;Scott Hanselman's Computer Zen - Screencast HowTo: IIS7 and PHP with FastCGI&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;If you are interested in configuring PHP and FastCGI on IIS7, there's a walkthrough in IIS.net:&amp;nbsp; &lt;A href="http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/PHP/Using-FastCGI-to-host-PHP-applications-on-IIS7?Page=5" mce_href="http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/PHP/Using-FastCGI-to-host-PHP-applications-on-IIS7?Page=5"&gt;Using FastCGI to host PHP applications on IIS7&lt;/A&gt;&lt;/P&gt;</description></item><item><title>Announcing Go Live Beta of FastCGI Extension for PHP hosting on IIS5.1/IIS6.0</title><link>http://blogs.iis.net/bills/archive/2007/09/24/announcing-go-live-beta-of-fastcgi-extension-for-php-hosting-on-iis5-1-iis6-0.aspx</link><pubDate>Mon, 24 Sep 2007 23:02:47 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1924705</guid><dc:creator>bills</dc:creator><cs:applicationKey>bills</cs:applicationKey><description>&lt;p&gt;Just over ten months ago I &lt;a href="http://blogs.iis.net/bills/archive/2006/10/31/IIS-Team-Announces-FastCGI-For-IIS-5.1_2C00_-IIS-6.0-and-IIS7.aspx"&gt;announced&lt;/a&gt; a technical collaboration agreement between Microsoft, Zend and the PHP community to enable fast and reliable hosting of PHP on Windows and IIS.&amp;#xA0; Since then, more than 14,000 people have downloaded the Technical Preview release!&amp;#xA0; I'm pleased to say that today we make another step forward with that work by announcing the availability of the FastCGI Extension for IIS 5.1 and IIS 6.0 with a &lt;a href="http://www.iis.net/default.aspx?tabid=1000051"&gt;free GoLive Beta release&lt;/a&gt;.&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0; &lt;/p&gt;  &lt;h4&gt;What does &amp;quot;Go Live&amp;quot; mean, is this ready for production use?&lt;/h4&gt;  &lt;p&gt;This &amp;quot;Go Live&amp;quot; release is Microsoft lingo for &amp;#x201C;we think this is ready for production deployment&amp;#x201D;.&amp;#xA0; Now is your chance to tell us if you think it is ready for the final release.&amp;#xA0; I want to thank all of you who posted your feedback encourage everyone to try out &lt;a href="http://www.iis.net/default.aspx?tabid=1000051"&gt;this latest release&lt;/a&gt; and post your feedback in the &lt;a href="http://forums.iis.net/1103.aspx"&gt;FastCGI forums&lt;/a&gt;.&amp;#xA0;&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0; &lt;/p&gt;  &lt;h4&gt;Which PHP applications will work with FastCGI?&lt;/h4&gt;  &lt;p&gt;&lt;strong&gt;All PHP applications&lt;/strong&gt; that work on Windows today with either the ISAPI or traditional CGI-based PHP hosting should work flawlessly with the new FastCGI Extension.&amp;#xA0; As part of the FastCGI Extension RC0 release, our team has also been doing some basic compatibility testing of some of the most popular PHP applications. To help you get started with PHP and the FastCGI Extension, we've documented the steps needed to get these working with IIS.&amp;#xA0; You can check out this documentation as well as updated information about using PHP on IIS at &lt;a href="http://www.iis.net/php"&gt;http://www.iis.net/php&lt;/a&gt; .&amp;#xA0; If you have an application you'd like us publish instructions for, &lt;a href="http://blogs.iis.net/bills/contact.aspx"&gt;send me a message&lt;/a&gt;! &lt;/p&gt;  &lt;p&gt;&amp;#xA0; &lt;/p&gt;  &lt;h4&gt;Where do I get it?&lt;/h4&gt;  &lt;p&gt;Go ahead and &lt;a href="http://www.iis.net/default.aspx?tabid=1000051"&gt;download the FastCGI Extension Go Live&lt;/a&gt; and keep us posted on your experiences. See &lt;a href="http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/PHP/Configuring-FastCGI-Extension-for-IIS6-0-and-IIS5-"&gt;this article&lt;/a&gt; for how to get started with the FastCGI Extension on IIS5.1/6.0.&amp;#xA0; &lt;/p&gt;  &lt;p&gt;&amp;#xA0; &lt;/p&gt;  &lt;h4&gt;FastCGI for IIS7?&lt;/h4&gt;  &lt;p&gt;I should also mention that if you are trying out Windows Server 2008 / IIS7, especially the RC0 release that was also launched today, you do not need to download this FastCGI extension.&amp;#xA0; IIS7 has the FastCGI module built-in.&amp;#xA0;&amp;#xA0; Just install the &amp;quot;CGI&amp;quot; component and you are ready to use IIS with both traditional CGI as well as FastCGI applications.&amp;#xA0; See &lt;a href="http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/PHP/Using-FastCGI-to-host-PHP-applications-on-IIS7"&gt;this article&lt;/a&gt; for step-by-step info on how to use FastCGI with IIS7.&amp;#xA0; &lt;/p&gt;</description></item></channel></rss>