<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	>
<channel>
	<title>Comments on: How To Install MacPorts, Apache2, Rails, MySql, Mongrel, and Subversion on an Intel Mac</title>
	<atom:link href="http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/feed" rel="self" type="application/rss+xml" />
	<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac</link>
	<description>User Experience Strategy, Ruby and Rails Web App Development</description>
	<lastBuildDate>Fri, 12 Mar 2010 06:38:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Paul Johnston</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-56733</link>
		<dc:creator>Paul Johnston</dc:creator>
		<pubDate>Tue, 22 Jul 2008 20:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-56733</guid>
		<description>Oops, the angle brackets were not escaped in my post. View source to get a better reflection of the command outputs above</description>
		<content:encoded><![CDATA[<p>Oops, the angle brackets were not escaped in my post. View source to get a better reflection of the command outputs above</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Johnston</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-56732</link>
		<dc:creator>Paul Johnston</dc:creator>
		<pubDate>Tue, 22 Jul 2008 20:37:53 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-56732</guid>
		<description>Very helpful. Here is a command summary of my apache2 subversion mod_dav_svn install (starting configuration).  Basically I did:

$ sudo port selfupdate
$ port -v
MacPorts 1.600

$ sudo port install apache2
$ sudo port uninstall subversion # was already installed without mod_dav_svn
$ sudo port install subversion +mod_dav_svn +tools

$ cd /opt/local/apache2/conf
$ sudo cp httpd.conf.sample httpd.conf
$ sudo vi httpd.conf # added Include 
$ cat httpd.conf &#124; grep svn # no match
$ cat httpd.conf &#124; grep subversion 
Include conf/extra/httpd-subversion.conf
$ cat /opt/local/apache2/conf/extra/httpd-subversion.conf
LoadModule dav_svn_module modules/mod_dav_svn.so

   DAV svn
   SVNPath /Library/Subversion

$ curl http://localhost/svn/
svn - Revision 16: /

 svn - Revision 16: /
 
  &lt;a href=&quot;pcj/&quot; rel=&quot;nofollow&quot;&gt;pcj/&lt;/a&gt;
 
 &lt;em&gt;Powered by &lt;a href=&quot;http://subversion.tigris.org/&quot; rel=&quot;nofollow&quot;&gt;Subversion&lt;/a&gt; version 1.5.0 (r31699).&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>Very helpful. Here is a command summary of my apache2 subversion mod_dav_svn install (starting configuration).  Basically I did:</p>
<p>$ sudo port selfupdate<br />
$ port -v<br />
MacPorts 1.600</p>
<p>$ sudo port install apache2<br />
$ sudo port uninstall subversion # was already installed without mod_dav_svn<br />
$ sudo port install subversion +mod_dav_svn +tools</p>
<p>$ cd /opt/local/apache2/conf<br />
$ sudo cp httpd.conf.sample httpd.conf<br />
$ sudo vi httpd.conf # added Include<br />
$ cat httpd.conf | grep svn # no match<br />
$ cat httpd.conf | grep subversion<br />
Include conf/extra/httpd-subversion.conf<br />
$ cat /opt/local/apache2/conf/extra/httpd-subversion.conf<br />
LoadModule dav_svn_module modules/mod_dav_svn.so</p>
<p>   DAV svn<br />
   SVNPath /Library/Subversion</p>
<p>$ curl <a href="http://localhost/svn/" rel="nofollow">http://localhost/svn/</a><br />
svn &#8211; Revision 16: /</p>
<p> svn &#8211; Revision 16: /</p>
<p>  <a href="pcj/" rel="nofollow">pcj/</a></p>
<p> <em>Powered by <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> version 1.5.0 (r31699).</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Conscious Bits&#8230; - &#187; Ruby on Rails Development Setup on an OS X 10.5 MacBook Pro</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-56425</link>
		<dc:creator>Conscious Bits&#8230; - &#187; Ruby on Rails Development Setup on an OS X 10.5 MacBook Pro</dc:creator>
		<pubDate>Wed, 11 Jun 2008 23:11:35 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-56425</guid>
		<description>[...] basis for my steps started out with this great post from Garrick Van Buren. I basically followed his steps exactly, but encountered a problem when I [...]</description>
		<content:encoded><![CDATA[<p>[...] basis for my steps started out with this great post from Garrick Van Buren. I basically followed his steps exactly, but encountered a problem when I [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivisecting Media &#187; Blog Archive &#187; Installing Erlang on OS X</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-54359</link>
		<dc:creator>Vivisecting Media &#187; Blog Archive &#187; Installing Erlang on OS X</dc:creator>
		<pubDate>Sun, 17 Feb 2008 03:03:17 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-54359</guid>
		<description>[...] At this point I realized it was system configuration issue and not application specific. Luckily Garrick Van Buren had the same kind of issue with MacPorts and his bash client. His tip let me to search where the bin directory path was set with the env [...]</description>
		<content:encoded><![CDATA[<p>[...] At this point I realized it was system configuration issue and not application specific. Luckily Garrick Van Buren had the same kind of issue with MacPorts and his bash client. His tip let me to search where the bin directory path was set with the env [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arikjones</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-49847</link>
		<dc:creator>arikjones</dc:creator>
		<pubDate>Tue, 06 Nov 2007 14:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-49847</guid>
		<description>I am definitely going to be following this when I get my new iMac on wednesday evening.</description>
		<content:encoded><![CDATA[<p>I am definitely going to be following this when I get my new iMac on wednesday evening.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robb Irrgang</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-47226</link>
		<dc:creator>Robb Irrgang</dc:creator>
		<pubDate>Tue, 21 Aug 2007 15:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-47226</guid>
		<description>considering you&#039;re recommending the stock mysql 5 package, wouldn&#039;t mysqladmin be in  /usr/local/mysql/bin/mysqladmin  instead of /opt? or are you suggesting we should use the mysql 5 that comes with MacPorts?</description>
		<content:encoded><![CDATA[<p>considering you&#8217;re recommending the stock mysql 5 package, wouldn&#8217;t mysqladmin be in  /usr/local/mysql/bin/mysqladmin  instead of /opt? or are you suggesting we should use the mysql 5 that comes with MacPorts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-46555</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 24 Jul 2007 21:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-46555</guid>
		<description>Did you run the &quot;sudo port selfupdate&quot; command? If not, try that.</description>
		<content:encoded><![CDATA[<p>Did you run the &#8220;sudo port selfupdate&#8221; command? If not, try that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Nash</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-45979</link>
		<dc:creator>Nathan Nash</dc:creator>
		<pubDate>Wed, 04 Jul 2007 23:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-45979</guid>
		<description>I downloaded and installed xcode yet I still recieve the same error. any clue as to why? also is there a way to check to see if you have installed mysql5 properly?</description>
		<content:encoded><![CDATA[<p>I downloaded and installed xcode yet I still recieve the same error. any clue as to why? also is there a way to check to see if you have installed mysql5 properly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Just Hansen</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-45016</link>
		<dc:creator>Michael Just Hansen</dc:creator>
		<pubDate>Sun, 17 Jun 2007 20:30:34 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-45016</guid>
		<description>I had the same problem. You&#039;ll need to install the XCode package from http://developer.apple.com/tools/download/</description>
		<content:encoded><![CDATA[<p>I had the same problem. You&#8217;ll need to install the XCode package from <a href="http://developer.apple.com/tools/download/" rel="nofollow">http://developer.apple.com/tools/download/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Nash</title>
		<link>http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac/comment-page-1#comment-44422</link>
		<dc:creator>Nathan Nash</dc:creator>
		<pubDate>Fri, 15 Jun 2007 22:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://garrickvanburen.com/archive/how-to-install-macports-apache2-rails-mysql-mongrel-and-subversion-on-an-intel-mac#comment-44422</guid>
		<description>Hi , I am having trouble installing apache2

When I attempt to intstall I get this error:

Error: Unable to execute port: wrong # args: should be &quot;proc name args body&quot;

I&#039;ve typed in the unix line multiple times as well, when I put a space between apache and 2 &quot;apache_2&quot; I get:


---&gt;  Cleaning apache
Error: Port 2 not found


Could you please help explain my problem?</description>
		<content:encoded><![CDATA[<p>Hi , I am having trouble installing apache2</p>
<p>When I attempt to intstall I get this error:</p>
<p>Error: Unable to execute port: wrong # args: should be &#8220;proc name args body&#8221;</p>
<p>I&#8217;ve typed in the unix line multiple times as well, when I put a space between apache and 2 &#8220;apache_2&#8243; I get:</p>
<p>&#8212;&gt;  Cleaning apache<br />
Error: Port 2 not found</p>
<p>Could you please help explain my problem?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
