<?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: How to install Subversion on a shared host</title>
	<atom:link href="http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/feed/" rel="self" type="application/rss+xml" />
	<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/</link>
	<description>.com</description>
	<lastBuildDate>Sat, 19 May 2012 15:21:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Andre Mariano</title>
		<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/#comment-232674</link>
		<dc:creator>Andre Mariano</dc:creator>
		<pubDate>Tue, 22 Feb 2011 18:14:52 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/#comment-232674</guid>
		<description>Hi, I have an account in hostmonster, I&#039;m kind a newbie in linux. I installed everything correctly and it even shows svn --version, but I don&#039;t know what is the link for me to connect to the svn, I don&#039;t even know where is my repository location =//
Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi, I have an account in hostmonster, I&#8217;m kind a newbie in linux. I installed everything correctly and it even shows svn &#8211;version, but I don&#8217;t know what is the link for me to connect to the svn, I don&#8217;t even know where is my repository location =//<br />
Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: minway</title>
		<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/#comment-193621</link>
		<dc:creator>minway</dc:creator>
		<pubDate>Wed, 10 Nov 2010 01:40:55 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/#comment-193621</guid>
		<description>It works well on my Bluehost account. 

Thanks a lot for your sharing.</description>
		<content:encoded><![CDATA[<p>It works well on my Bluehost account. </p>
<p>Thanks a lot for your sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terabyte Hosting</title>
		<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/#comment-190395</link>
		<dc:creator>Terabyte Hosting</dc:creator>
		<pubDate>Mon, 25 Oct 2010 03:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/#comment-190395</guid>
		<description>Joe,
perfectly written. i did see one issue, that i just made a note of on a VPS install. it complained about the --enable-shared. i am installing this on several of my clients VPS&#039;s, and have only noticed this issue with &#039;unrecognized variable --enable-shared

other than that, perfect, lifesaver for those who are on shared hosting with SSH access and desire having svn.</description>
		<content:encoded><![CDATA[<p>Joe,<br />
perfectly written. i did see one issue, that i just made a note of on a VPS install. it complained about the &#8211;enable-shared. i am installing this on several of my clients VPS&#8217;s, and have only noticed this issue with &#8216;unrecognized variable &#8211;enable-shared</p>
<p>other than that, perfect, lifesaver for those who are on shared hosting with SSH access and desire having svn.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alec</title>
		<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/#comment-182005</link>
		<dc:creator>Alec</dc:creator>
		<pubDate>Mon, 06 Sep 2010 14:48:36 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/#comment-182005</guid>
		<description>Actually, I just fixed it myself.  I&#039;m interfacing with the shell in a weird way, so variables like $HOME weren&#039;t interpreted properly.  So now I manually put them in, so it&#039;s working great!  Thanks for this how-to.</description>
		<content:encoded><![CDATA[<p>Actually, I just fixed it myself.  I&#8217;m interfacing with the shell in a weird way, so variables like $HOME weren&#8217;t interpreted properly.  So now I manually put them in, so it&#8217;s working great!  Thanks for this how-to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alec</title>
		<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/#comment-182002</link>
		<dc:creator>Alec</dc:creator>
		<pubDate>Mon, 06 Sep 2010 14:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/#comment-182002</guid>
		<description>It was all working great, but now there&#039;s what seems to be a simple error.

In the &quot;make install&quot; part of

cd apr
./configure --enable-shared --prefix=$HOME
make &amp;&amp; make install

I&#039;m getting an error at the end where the output looks like this:

if [ ! -d /include/apr-0 ]; then \
	    /home1/alecnewm/public_html/private/src/subversion-1.4.6/apr/build/mkdir.sh /include/apr-0; \
	fi;
mkdir /include
mkdir: cannot create directory `/include&#039;: Permission denied
mkdir /include/apr-0
mkdir: cannot create directory `/include/apr-0&#039;: No such file or directory
make: *** [install] Error 1

As far as I see, the prefix was ignored at this part, and it&#039;s trying to make these directories right under root.

How can I fix this?  Thanks in advance.</description>
		<content:encoded><![CDATA[<p>It was all working great, but now there&#8217;s what seems to be a simple error.</p>
<p>In the &#8220;make install&#8221; part of</p>
<p>cd apr<br />
./configure &#8211;enable-shared &#8211;prefix=$HOME<br />
make &amp;&amp; make install</p>
<p>I&#8217;m getting an error at the end where the output looks like this:</p>
<p>if [ ! -d /include/apr-0 ]; then \<br />
	    /home1/alecnewm/public_html/private/src/subversion-1.4.6/apr/build/mkdir.sh /include/apr-0; \<br />
	fi;<br />
mkdir /include<br />
mkdir: cannot create directory `/include&#8217;: Permission denied<br />
mkdir /include/apr-0<br />
mkdir: cannot create directory `/include/apr-0&#8242;: No such file or directory<br />
make: *** [install] Error 1</p>
<p>As far as I see, the prefix was ignored at this part, and it&#8217;s trying to make these directories right under root.</p>
<p>How can I fix this?  Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pankaj</title>
		<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/#comment-180334</link>
		<dc:creator>Pankaj</dc:creator>
		<pubDate>Sat, 28 Aug 2010 17:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/#comment-180334</guid>
		<description>Hey Some Cool tips:

http://pankajdangi.com/2010/08/how-to-install-subversion-on-linux-machine/

Thanks
Pankaj</description>
		<content:encoded><![CDATA[<p>Hey Some Cool tips:</p>
<p><a href="http://pankajdangi.com/2010/08/how-to-install-subversion-on-linux-machine/" rel="nofollow">http://pankajdangi.com/2010/08/how-to-install-subversion-on-linux-machine/</a></p>
<p>Thanks<br />
Pankaj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/#comment-174226</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sun, 13 Jun 2010 22:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/#comment-174226</guid>
		<description>It&#039;s been a while, but if I remember correctly, you will only have read access via http, use ssh if you will be writing.</description>
		<content:encoded><![CDATA[<p>It&#8217;s been a while, but if I remember correctly, you will only have read access via http, use ssh if you will be writing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaime</title>
		<link>http://joemaller.com/881/how-to-install-subversion-on-a-shared-host/#comment-173799</link>
		<dc:creator>Jaime</dc:creator>
		<pubDate>Mon, 07 Jun 2010 16:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/#comment-173799</guid>
		<description>Hello..

I have configured subversion in my bluehost account at the following folder:

~/public_html/subversion

When I run # svn --version, this is the response:

svn, version 1.6.11 (r934486)
   compiled Jun  5 2010, 17:41:25

Copyright (C) 2000-2009 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_neon : Module for accessing a repository via WebDAV protocol using Neon.
  - handles &#039;http&#039; scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
  - with Cyrus SASL authentication
  - handles &#039;svn&#039; scheme
* ra_local : Module for accessing a repository on local disk.
  - handles &#039;file&#039; scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - handles &#039;http&#039; scheme
  - handles &#039;https&#039; scheme


Inside subversion folder I created other folder called &quot;projects&quot; where I plan to create all repositories. after going to that folder, I issued &quot;svnadmin create myrepos&quot; and all folder structure myrepos was created.

The great problem is that I cannot access the repository from my client. If I try to use http scheme (http://svn.domain.com/myrepos), the repository folder list is shown in the browser, and with svn scheme a cannot access it (using Zend Studio SVN plugin).

Any idea?
Thanks</description>
		<content:encoded><![CDATA[<p>Hello..</p>
<p>I have configured subversion in my bluehost account at the following folder:</p>
<p>~/public_html/subversion</p>
<p>When I run # svn &#8211;version, this is the response:</p>
<p>svn, version 1.6.11 (r934486)<br />
   compiled Jun  5 2010, 17:41:25</p>
<p>Copyright (C) 2000-2009 CollabNet.<br />
Subversion is open source software, see <a href="http://subversion.tigris.org/" rel="nofollow">http://subversion.tigris.org/</a><br />
This product includes software developed by CollabNet (<a href="http://www.Collab.Net/" rel="nofollow">http://www.Collab.Net/</a>).</p>
<p>The following repository access (RA) modules are available:</p>
<p>* ra_neon : Module for accessing a repository via WebDAV protocol using Neon.<br />
  &#8211; handles &#8216;http&#8217; scheme<br />
* ra_svn : Module for accessing a repository using the svn network protocol.<br />
  &#8211; with Cyrus SASL authentication<br />
  &#8211; handles &#8216;svn&#8217; scheme<br />
* ra_local : Module for accessing a repository on local disk.<br />
  &#8211; handles &#8216;file&#8217; scheme<br />
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.<br />
  &#8211; handles &#8216;http&#8217; scheme<br />
  &#8211; handles &#8216;https&#8217; scheme</p>
<p>Inside subversion folder I created other folder called &#8220;projects&#8221; where I plan to create all repositories. after going to that folder, I issued &#8220;svnadmin create myrepos&#8221; and all folder structure myrepos was created.</p>
<p>The great problem is that I cannot access the repository from my client. If I try to use http scheme (<a href="http://svn.domain.com/myrepos" rel="nofollow">http://svn.domain.com/myrepos</a>), the repository folder list is shown in the browser, and with svn scheme a cannot access it (using Zend Studio SVN plugin).</p>
<p>Any idea?<br />
Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 1/7 queries in 0.024 seconds using disk: basic
Object Caching 237/251 objects using disk: basic

Served from: joemaller.com @ 2012-05-23 05:49:29 -->
