<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Multiple PHP versions on the same IIS server</title>
	<atom:link href="http://ruslany.net/2009/12/multiple-php-versions-on-the-same-iis-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://ruslany.net/2009/12/multiple-php-versions-on-the-same-iis-server/</link>
	<description>IIS, FastCGI, PHP and other interesting stuff</description>
	<lastBuildDate>Sat, 12 May 2012 03:15:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Brian Swan</title>
		<link>http://ruslany.net/2009/12/multiple-php-versions-on-the-same-iis-server/comment-page-1/#comment-2085</link>
		<dc:creator>Brian Swan</dc:creator>
		<pubDate>Wed, 16 Jun 2010 23:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/?p=613#comment-2085</guid>
		<description>I installed PHP 5.2.13 using the Web Platform Installer, then I manually installed PHP 5.3 to run a different website. What I then noticed was that both versions of PHP were loading the same php.ini file. Eventually, I figured out what to do to get each version loading its own php.ini file. (Ruslan very wisely warns about using an installer if you want multiple PHP versions.)

So, if you installed PHP with the Web Platform Installer (or the Windows installer) and you want a second PHP version that loads its own php.ini file, here&#039;s what to do:

1. Delete the PHPRC environment variable (Control Panel&#124;System&#124;Advanced Settings). This variable was added by the installer.
2. Restart your machine.
3. Manually add/configure a handler for you 2nd PHP version.

Hope that helps somebody.

-Brian</description>
		<content:encoded><![CDATA[<p>I installed PHP 5.2.13 using the Web Platform Installer, then I manually installed PHP 5.3 to run a different website. What I then noticed was that both versions of PHP were loading the same php.ini file. Eventually, I figured out what to do to get each version loading its own php.ini file. (Ruslan very wisely warns about using an installer if you want multiple PHP versions.)</p>
<p>So, if you installed PHP with the Web Platform Installer (or the Windows installer) and you want a second PHP version that loads its own php.ini file, here&#8217;s what to do:</p>
<p>1. Delete the PHPRC environment variable (Control Panel|System|Advanced Settings). This variable was added by the installer.<br />
2. Restart your machine.<br />
3. Manually add/configure a handler for you 2nd PHP version.</p>
<p>Hope that helps somebody.</p>
<p>-Brian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saqib Ansari</title>
		<link>http://ruslany.net/2009/12/multiple-php-versions-on-the-same-iis-server/comment-page-1/#comment-1658</link>
		<dc:creator>Saqib Ansari</dc:creator>
		<pubDate>Sun, 07 Feb 2010 00:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/?p=613#comment-1658</guid>
		<description>5 Wow....

I really need such guide. I&#039;m going to install PHP different version on my new server but i don&#039;t know how do i install multiple version.

Thanks</description>
		<content:encoded><![CDATA[<p>5 Wow&#8230;.</p>
<p>I really need such guide. I&#8217;m going to install PHP different version on my new server but i don&#8217;t know how do i install multiple version.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James White</title>
		<link>http://ruslany.net/2009/12/multiple-php-versions-on-the-same-iis-server/comment-page-1/#comment-1580</link>
		<dc:creator>James White</dc:creator>
		<pubDate>Mon, 04 Jan 2010 16:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/?p=613#comment-1580</guid>
		<description>Great guide. Don&#039;t forget to add both PHP directories to the PATH variable and configure each install to point to the correct php.ini.</description>
		<content:encoded><![CDATA[<p>Great guide. Don&#8217;t forget to add both PHP directories to the PATH variable and configure each install to point to the correct php.ini.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://ruslany.net/2009/12/multiple-php-versions-on-the-same-iis-server/comment-page-1/#comment-1566</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Wed, 23 Dec 2009 09:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/?p=613#comment-1566</guid>
		<description>Very nice guide! I&#039;m impressed with how switching PHP versions on IIS is so easy. Just did it myself in a few minutes.

The IIS platform is becoming more and more compelling to use with PHP.</description>
		<content:encoded><![CDATA[<p>Very nice guide! I&#8217;m impressed with how switching PHP versions on IIS is so easy. Just did it myself in a few minutes.</p>
<p>The IIS platform is becoming more and more compelling to use with PHP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Salman</title>
		<link>http://ruslany.net/2009/12/multiple-php-versions-on-the-same-iis-server/comment-page-1/#comment-1538</link>
		<dc:creator>Salman</dc:creator>
		<pubDate>Thu, 17 Dec 2009 11:22:29 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/?p=613#comment-1538</guid>
		<description>A side note: if you want the installations to use separate php.ini files as well, modify your fcgiext.ini file as follows:

[php5211]  
ExePath=C:\php5211\php-cgi.exe  
Arguments=-c C:\php5211\php.ini

[php531]  
ExePath=C:\php531\php-cgi.exe  
Arguments=-c C:\php531\php.ini

Another side note: it is possible to have the two separate installations load php shared dlls (not the extensions) from one directory. If this is the case you may try removing PHP path from windows PATH environment variable and add it back to per section environment variables thru fcgiext.ini file.</description>
		<content:encoded><![CDATA[<p>A side note: if you want the installations to use separate php.ini files as well, modify your fcgiext.ini file as follows:</p>
<p>[php5211]<br />
ExePath=C:\php5211\php-cgi.exe<br />
Arguments=-c C:\php5211\php.ini</p>
<p>[php531]<br />
ExePath=C:\php531\php-cgi.exe<br />
Arguments=-c C:\php531\php.ini</p>
<p>Another side note: it is possible to have the two separate installations load php shared dlls (not the extensions) from one directory. If this is the case you may try removing PHP path from windows PATH environment variable and add it back to per section environment variables thru fcgiext.ini file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Duguid</title>
		<link>http://ruslany.net/2009/12/multiple-php-versions-on-the-same-iis-server/comment-page-1/#comment-1528</link>
		<dc:creator>Matt Duguid</dc:creator>
		<pubDate>Wed, 16 Dec 2009 21:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/?p=613#comment-1528</guid>
		<description>Saw a demo of this at TechEd NZ this year by Jorke Odolphi, very cool. Apparently the speed of PHP on Windows vs Unix is pretty much the same now... ;)</description>
		<content:encoded><![CDATA[<p>Saw a demo of this at TechEd NZ this year by Jorke Odolphi, very cool. Apparently the speed of PHP on Windows vs Unix is pretty much the same now&#8230; <img src='http://ruslany.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

