<?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: Setting up Darwinports, Pear, Apache2, PHP5, MySQL5 and Symfony on OS X &#8216;Tiger&#8217;</title>
	<atom:link href="http://www.burobjorn.nl/blog/2007/09/18/setting-up-darwinports-pear-apache2-php5-mysql5-and-symfony-on-os-x-tiger/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.burobjorn.nl/blog/2007/09/18/setting-up-darwinports-pear-apache2-php5-mysql5-and-symfony-on-os-x-tiger/</link>
	<description>Burobjorn houdt zich bezig met open source software en online media. Van advies tot concept. Van prototype tot implementatie.</description>
	<lastBuildDate>Thu, 05 Aug 2010 11:56:31 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Pilot</title>
		<link>http://www.burobjorn.nl/blog/2007/09/18/setting-up-darwinports-pear-apache2-php5-mysql5-and-symfony-on-os-x-tiger/comment-page-1/#comment-124703</link>
		<dc:creator>Pilot</dc:creator>
		<pubDate>Mon, 07 Jan 2008 13:48:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.burobjorn.nl/blog/?p=159#comment-124703</guid>
		<description>I might have missed something somewhere, but following your steps didn&#039;t fully enable php.
I had to add the line

AddType application/x-httpd-php .php

Then it works fine!

If there is another way it should have been done, can you notify me?
Thanks</description>
		<content:encoded><![CDATA[<p>I might have missed something somewhere, but following your steps didn&#8217;t fully enable php.<br />
I had to add the line</p>
<p>AddType application/x-httpd-php .php</p>
<p>Then it works fine!</p>
<p>If there is another way it should have been done, can you notify me?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BjornW</title>
		<link>http://www.burobjorn.nl/blog/2007/09/18/setting-up-darwinports-pear-apache2-php5-mysql5-and-symfony-on-os-x-tiger/comment-page-1/#comment-113003</link>
		<dc:creator>BjornW</dc:creator>
		<pubDate>Sat, 17 Nov 2007 22:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.burobjorn.nl/blog/?p=159#comment-113003</guid>
		<description>@Clayton:

Thanks for your addition.</description>
		<content:encoded><![CDATA[<p>@Clayton:</p>
<p>Thanks for your addition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clayton</title>
		<link>http://www.burobjorn.nl/blog/2007/09/18/setting-up-darwinports-pear-apache2-php5-mysql5-and-symfony-on-os-x-tiger/comment-page-1/#comment-112727</link>
		<dc:creator>Clayton</dc:creator>
		<pubDate>Fri, 16 Nov 2007 23:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.burobjorn.nl/blog/?p=159#comment-112727</guid>
		<description>For those who need to compile in, for example, soap, do the following:

Download php5:
sudo port fetch php5

Edit the config file:
sudo vi `port dir php`/Portfile

In the configure.args area add in a line that looks like this &quot;--enable-soap \&quot; before the last line.

Compile from source/ install as normal:
sudo port -s install php5 +mysql5 +apache2 +pear +tidy # etc

you can type the following to see a list of the variants that can be compiled/installed with php5:
port variants php5</description>
		<content:encoded><![CDATA[<p>For those who need to compile in, for example, soap, do the following:</p>
<p>Download php5:<br />
sudo port fetch php5</p>
<p>Edit the config file:<br />
sudo vi `port dir php`/Portfile</p>
<p>In the configure.args area add in a line that looks like this &#8220;&#8211;enable-soap \&#8221; before the last line.</p>
<p>Compile from source/ install as normal:<br />
sudo port -s install php5 +mysql5 +apache2 +pear +tidy # etc</p>
<p>you can type the following to see a list of the variants that can be compiled/installed with php5:<br />
port variants php5</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BjornW</title>
		<link>http://www.burobjorn.nl/blog/2007/09/18/setting-up-darwinports-pear-apache2-php5-mysql5-and-symfony-on-os-x-tiger/comment-page-1/#comment-112517</link>
		<dc:creator>BjornW</dc:creator>
		<pubDate>Fri, 16 Nov 2007 10:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.burobjorn.nl/blog/?p=159#comment-112517</guid>
		<description>@randy:

I don&#039;t think that I had to change/set that manually. 

If you do need to do it manually, have a look at your Apache config (in my case /opt/local/apache2/conf/httpd.conf) and add the following line:

LoadModule php5_module        modules/libphp5.so

In this case I presume that your libphp5.so is in the modules dir (/opt/local/apache2/modules/). 

I hope this helps!</description>
		<content:encoded><![CDATA[<p>@randy:</p>
<p>I don&#8217;t think that I had to change/set that manually. </p>
<p>If you do need to do it manually, have a look at your Apache config (in my case /opt/local/apache2/conf/httpd.conf) and add the following line:</p>
<p>LoadModule php5_module        modules/libphp5.so</p>
<p>In this case I presume that your libphp5.so is in the modules dir (/opt/local/apache2/modules/). </p>
<p>I hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: randy melder</title>
		<link>http://www.burobjorn.nl/blog/2007/09/18/setting-up-darwinports-pear-apache2-php5-mysql5-and-symfony-on-os-x-tiger/comment-page-1/#comment-112314</link>
		<dc:creator>randy melder</dc:creator>
		<pubDate>Thu, 15 Nov 2007 22:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.burobjorn.nl/blog/?p=159#comment-112314</guid>
		<description>apache is not configured with the php anywhere... where/how should I glue in the libphp5.so?</description>
		<content:encoded><![CDATA[<p>apache is not configured with the php anywhere&#8230; where/how should I glue in the libphp5.so?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rpsblog.com &#187; A week of symfony #38 (17-&#38;gt;23 September 2007)</title>
		<link>http://www.burobjorn.nl/blog/2007/09/18/setting-up-darwinports-pear-apache2-php5-mysql5-and-symfony-on-os-x-tiger/comment-page-1/#comment-96499</link>
		<dc:creator>rpsblog.com &#187; A week of symfony #38 (17-&#38;gt;23 September 2007)</dc:creator>
		<pubDate>Sun, 23 Sep 2007 21:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.burobjorn.nl/blog/?p=159#comment-96499</guid>
		<description>[...] Setting up Darwinports, Pear, Apache2, PHP5, MySQL5 and Symfony on OS X &#8216;Tiger&#8217; [...]</description>
		<content:encoded><![CDATA[<p>[...] Setting up Darwinports, Pear, Apache2, PHP5, MySQL5 and Symfony on OS X &lsquo;Tiger&rsquo; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
