<?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: Running multiple php versions on a single Apache install</title>
	<atom:link href="http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/feed/" rel="self" type="application/rss+xml" />
	<link>http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/</link>
	<description>il mago di eZ</description>
	<lastBuildDate>Tue, 10 Nov 2009 10:48:35 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: rod</title>
		<link>http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/comment-page-1/#comment-7160</link>
		<dc:creator>rod</dc:creator>
		<pubDate>Sat, 15 Nov 2008 18:20:40 +0000</pubDate>
		<guid isPermaLink="false">http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/#comment-7160</guid>
		<description>An alternative setup using PHP as CGI.  You can run as many versions as you want on one address/port...

ScriptAlias /php-4/ &quot;c:/php/4.4.9&quot;
ScriptAlias /php-5/ &quot;c:/php/5.3&quot;

# default to php 5
AddType application/x-httpd-php .php
Action application/x-httpd-php &quot;/php-5/php.exe&quot;

# app that needs php 4

    Action application/x-httpd-php &quot;/php-4/php.exe&quot;
</description>
		<content:encoded><![CDATA[<p>An alternative setup using PHP as CGI.  You can run as many versions as you want on one address/port&#8230;</p>
<p>ScriptAlias /php-4/ &#8220;c:/php/4.4.9&#8243;<br />
ScriptAlias /php-5/ &#8220;c:/php/5.3&#8243;</p>
<p># default to php 5<br />
AddType application/x-httpd-php .php<br />
Action application/x-httpd-php &#8220;/php-5/php.exe&#8221;</p>
<p># app that needs php 4</p>
<p>    Action application/x-httpd-php &#8220;/php-4/php.exe&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giunta_gaetano</title>
		<link>http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/comment-page-1/#comment-1869</link>
		<dc:creator>giunta_gaetano</dc:creator>
		<pubDate>Wed, 15 Aug 2007 20:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/#comment-1869</guid>
		<description>@Hb: I only use one single PHPIniDir directive. It is used by the phpversion that is run as an Apache module. All the other php versions are running as cgi applications, and as such would ignore PHPIniDir anyway. For those, I use SetEnv PHPRC &quot;path to ini file&quot; instead, as you can see in my httpd.conf example. I have tried with apache 2.0 and 2.2, and I have had no problems so far...</description>
		<content:encoded><![CDATA[<p>@Hb: I only use one single PHPIniDir directive. It is used by the phpversion that is run as an Apache module. All the other php versions are running as cgi applications, and as such would ignore PHPIniDir anyway. For those, I use SetEnv PHPRC &#8220;path to ini file&#8221; instead, as you can see in my httpd.conf example. I have tried with apache 2.0 and 2.2, and I have had no problems so far&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hb</title>
		<link>http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/comment-page-1/#comment-1860</link>
		<dc:creator>Hb</dc:creator>
		<pubDate>Mon, 13 Aug 2007 21:37:21 +0000</pubDate>
		<guid isPermaLink="false">http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/#comment-1860</guid>
		<description>In step 3 you mentioned that each php version should have it&#039;s own php.ini file in the same directory as it&#039;s php.exe. Sounds good, but how to tell those executables to use them and not to use %windir&amp;%\php.ini? 

My http.conf allows only one PHPIniDir. Defining another one in a VirtualHost gives: &lt;em&gt;Only first PHPINIDir directive honored per configuration tree - subsequent ones ignored&lt;/em&gt;.</description>
		<content:encoded><![CDATA[<p>In step 3 you mentioned that each php version should have it&#8217;s own php.ini file in the same directory as it&#8217;s php.exe. Sounds good, but how to tell those executables to use them and not to use %windir&amp;%\php.ini? </p>
<p>My http.conf allows only one PHPIniDir. Defining another one in a VirtualHost gives: <em>Only first PHPINIDir directive honored per configuration tree &#8211; subsequent ones ignored</em>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: /home/kOoLiNuS</title>
		<link>http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/comment-page-1/#comment-1789</link>
		<dc:creator>/home/kOoLiNuS</dc:creator>
		<pubDate>Mon, 23 Jul 2007 16:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://gggeek.altervista.org/2007/07/21/running-multiple-php-versions-on-a-single-apache-install/#comment-1789</guid>
		<description>&lt;strong&gt;running multiple php versions on a single Apache&#160;install&lt;/strong&gt;

This post is just a reminder to myself about the post by my pal Gaetano showing us all
how to run multiple php versions on a single Apache install
His tutorial is valid both on windows and *nix like systems. Have a good read and thanks to Gaetano !
 ap...</description>
		<content:encoded><![CDATA[<p><strong>running multiple php versions on a single Apache&nbsp;install</strong></p>
<p>This post is just a reminder to myself about the post by my pal Gaetano showing us all<br />
how to run multiple php versions on a single Apache install<br />
His tutorial is valid both on windows and *nix like systems. Have a good read and thanks to Gaetano !<br />
 ap&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
