<?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: PHP5 on Mac OSX 10.4 Tiger</title>
	<atom:link href="http://lonnieolson.com/blog/2005/05/24/php5-mac-tiger/feed/" rel="self" type="application/rss+xml" />
	<link>http://lonnieolson.com/blog/2005/05/24/php5-mac-tiger/</link>
	<description>Words from the geeky sysadmin</description>
	<lastBuildDate>Thu, 10 Sep 2009 13:58:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Justin</title>
		<link>http://lonnieolson.com/blog/2005/05/24/php5-mac-tiger/comment-page-1/#comment-23932</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Fri, 04 Sep 2009 20:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://kittypee.com/wordpress/2005/05/24/php5-mac-tiger/#comment-23932</guid>
		<description>Alexandre, you forgot to do the following:
  make
  sudo make install
 from the php directory from terminal
this creates the libphp5.so file that is missing if you get that error. I did the above and it worked.</description>
		<content:encoded><![CDATA[<p>Alexandre, you forgot to do the following:<br />
  make<br />
  sudo make install<br />
 from the php directory from terminal<br />
this creates the libphp5.so file that is missing if you get that error. I did the above and it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://lonnieolson.com/blog/2005/05/24/php5-mac-tiger/comment-page-1/#comment-23866</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Tue, 01 Sep 2009 11:58:46 +0000</pubDate>
		<guid isPermaLink="false">http://kittypee.com/wordpress/2005/05/24/php5-mac-tiger/#comment-23866</guid>
		<description>Do you install the fink components first or after you have installed php5?</description>
		<content:encoded><![CDATA[<p>Do you install the fink components first or after you have installed php5?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandre Cassagne</title>
		<link>http://lonnieolson.com/blog/2005/05/24/php5-mac-tiger/comment-page-1/#comment-19994</link>
		<dc:creator>Alexandre Cassagne</dc:creator>
		<pubDate>Wed, 01 Apr 2009 20:42:54 +0000</pubDate>
		<guid isPermaLink="false">http://kittypee.com/wordpress/2005/05/24/php5-mac-tiger/#comment-19994</guid>
		<description>it says (when i do appachetl configtest):
&quot;Syntax error on line 240 of /etc/httpd/httpd.conf:
Cannot load /usr/libexec/httpd/libphp5.so into server: (reason unknown)&quot;

Someone help me?</description>
		<content:encoded><![CDATA[<p>it says (when i do appachetl configtest):<br />
&#8220;Syntax error on line 240 of /etc/httpd/httpd.conf:<br />
Cannot load /usr/libexec/httpd/libphp5.so into server: (reason unknown)&#8221;</p>
<p>Someone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandre Cassagne</title>
		<link>http://lonnieolson.com/blog/2005/05/24/php5-mac-tiger/comment-page-1/#comment-19993</link>
		<dc:creator>Alexandre Cassagne</dc:creator>
		<pubDate>Wed, 01 Apr 2009 20:41:10 +0000</pubDate>
		<guid isPermaLink="false">http://kittypee.com/wordpress/2005/05/24/php5-mac-tiger/#comment-19993</guid>
		<description>mine still doesn&#039;t work. Apparently there was a problem.</description>
		<content:encoded><![CDATA[<p>mine still doesn&#8217;t work. Apparently there was a problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fungus</title>
		<link>http://lonnieolson.com/blog/2005/05/24/php5-mac-tiger/comment-page-1/#comment-18</link>
		<dc:creator>fungus</dc:creator>
		<pubDate>Tue, 18 Jul 2006 23:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://kittypee.com/wordpress/2005/05/24/php5-mac-tiger/#comment-18</guid>
		<description>Yes PHP5 will run on Apache 1.3.3.  If your php info page is still showing PHP4, Apache is loading the wrong module.  There are 3 lines that reference the module.

Here is what they look like:
&lt;code&gt;LoadModule php4_module        libexec/httpd/libphp4.so
...
AddModule mod_php4.c
...
&lt;IfModule mod_php4.c&gt;&lt;/code&gt;

My directions above assumed that the first two lines were modified by the &quot;make install&quot;.  If that didn&#039;t happen you have to change them yourself.

Just open the config file in your editor and search for php4 and replace with php5.  Or for a quick one line command to make all the changes run this.

&lt;code&gt;sed -i .bak -e &#039;s/php4/php5/g&#039; /etc/httpd/httpd.conf&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Yes PHP5 will run on Apache 1.3.3.  If your php info page is still showing PHP4, Apache is loading the wrong module.  There are 3 lines that reference the module.</p>
<p>Here is what they look like:<br />
<code>LoadModule php4_module        libexec/httpd/libphp4.so<br />
...<br />
AddModule mod_php4.c<br />
...<br />
&lt;IfModule mod_php4.c&gt;</code></p>
<p>My directions above assumed that the first two lines were modified by the &#8220;make install&#8221;.  If that didn&#8217;t happen you have to change them yourself.</p>
<p>Just open the config file in your editor and search for php4 and replace with php5.  Or for a quick one line command to make all the changes run this.</p>
<p><code>sed -i .bak -e 's/php4/php5/g' /etc/httpd/httpd.conf</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Bayhylle</title>
		<link>http://lonnieolson.com/blog/2005/05/24/php5-mac-tiger/comment-page-1/#comment-17</link>
		<dc:creator>Mark Bayhylle</dc:creator>
		<pubDate>Tue, 18 Jul 2006 20:45:57 +0000</pubDate>
		<guid isPermaLink="false">http://kittypee.com/wordpress/2005/05/24/php5-mac-tiger/#comment-17</guid>
		<description>Hi there,

I need some help bad.  I&#039;ve tried the entropy package for php5.1.4 and I&#039;ve also compiled from source using your instructions (which work great by the way).  I still cannot get .php files to show in my browser and when I test the php config it still shows php4.x.x.  
I&#039;m on 10.4.7 with apache 1.3.3.  This is killing me.  Does php5 not work with apache1.3.3?  

Thanks for any help you can provide.

Mark Bayhylle</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I need some help bad.  I&#8217;ve tried the entropy package for php5.1.4 and I&#8217;ve also compiled from source using your instructions (which work great by the way).  I still cannot get .php files to show in my browser and when I test the php config it still shows php4.x.x.<br />
I&#8217;m on 10.4.7 with apache 1.3.3.  This is killing me.  Does php5 not work with apache1.3.3?  </p>
<p>Thanks for any help you can provide.</p>
<p>Mark Bayhylle</p>
]]></content:encoded>
	</item>
</channel>
</rss>
