<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.7" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for AlephZarro</title>
	<link>http://alephzarro.com/blog</link>
	<description>Viktor Zigo</description>
	<pubDate>Thu, 20 Nov 2008 22:33:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.7</generator>

	<item>
		<title>Comment on Installation of Subversion on Ubuntu, with Apache, SSL, and BasicAuth. by Mike</title>
		<link>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-44688</link>
		<pubDate>Sat, 15 Nov 2008 09:28:00 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-44688</guid>
					<description>This is an amazing tutorial, thanks!  I've tried to get http to work with svn several times before with no luck.</description>
		<content:encoded><![CDATA[<p>This is an amazing tutorial, thanks!  I&#8217;ve tried to get http to work with svn several times before with no luck.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Subversion: move, migrate, split by Jiang Xin</title>
		<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-44450</link>
		<pubDate>Thu, 13 Nov 2008 03:14:12 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-44450</guid>
					<description>path projects withoud a slash at the end should also be replaced. like this:
    Node-copyfrom-path: projects

I use this command:
     sed -e "s@^\(Node-path: \&#124;Node-copyfrom-path: \)projects/\?@\1@" proj1-fixed.dump</description>
		<content:encoded><![CDATA[<p>path projects withoud a slash at the end should also be replaced. like this:<br />
    Node-copyfrom-path: projects</p>
<p>I use this command:<br />
     sed -e &#8220;s@^\(Node-path: \|Node-copyfrom-path: \)projects/\?@\1@&#8221; proj1-fixed.dump
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Installation of Subversion on Ubuntu, with Apache, SSL, and BasicAuth. by Martin Alt</title>
		<link>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-44092</link>
		<pubDate>Fri, 07 Nov 2008 22:51:32 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-44092</guid>
					<description>Hello,

at first I want to say sorry for some mistakes in my english, I'm german. But I hope that you can help me.

I used your tutorial to setup my server with svn. My Problem is, that I get the message from tortoise svn, like this: "The folder had been moved to https://evolet/9100_test. Please relocate".

What can I do to fix this Problem? Whould be great if you help me!

greeting from Munich!

Martin</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>at first I want to say sorry for some mistakes in my english, I&#8217;m german. But I hope that you can help me.</p>
<p>I used your tutorial to setup my server with svn. My Problem is, that I get the message from tortoise svn, like this: &#8220;The folder had been moved to <a href="https://evolet/9100_test." rel="nofollow">https://evolet/9100_test.</a> Please relocate&#8221;.</p>
<p>What can I do to fix this Problem? Whould be great if you help me!</p>
<p>greeting from Munich!</p>
<p>Martin
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Installation of Subversion on Ubuntu, with Apache, SSL, and BasicAuth. by Frank</title>
		<link>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-44055</link>
		<pubDate>Fri, 07 Nov 2008 13:10:09 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-44055</guid>
					<description>Thanks alot for this guide! I just finished installing on Ubuntu 8.10 running on MS Virtual Server 2005.

I had some problems with permissions, but in the end it worked fine!

After following you're guide for installing Apache, SSL and SVN I did the following (for those it may help):

$ sudo mkdir /opt/svn/repos
$ sudo chgrp -R www-data /opt/svn/repos
$ sudo chmod -R g ws /opt/svn/repos
$ sudo svnadmin create /opt/svn/repos/test
$ sudo vi /etc/apache2/mods-available/dav_svn.conf


  # Uncomment this to enable the repository
  DAV svn

  # Set this to the path to your repository
  SVNPath /opt/svn/repos/test

  AuthType Basic
  AuthName "Subversion Repository"
  AuthUserFile /opt/svn/repos/test.passwd
  Require valid-user
  SSLRequireSSL


$ sudo htpasswd -c -m /opt/svn/repos/test.passwd test
New password:
Re-type new password:
Adding password for user test

$ sudo /etc/init.d/apache2 restart

now your repository is located at https://localhost/svn/test
and you have to login using user 'test' and the password you gave the user.

Sometimes I had trouble accessing the repository, but it was always permission issues and they where solved with 
$ sudo chmod -R g ws /opt/svn/repos



Thanks again for a great guide!

-- Frank</description>
		<content:encoded><![CDATA[<p>Thanks alot for this guide! I just finished installing on Ubuntu 8.10 running on MS Virtual Server 2005.</p>
<p>I had some problems with permissions, but in the end it worked fine!</p>
<p>After following you&#8217;re guide for installing Apache, SSL and SVN I did the following (for those it may help):</p>
<p>$ sudo mkdir /opt/svn/repos<br />
$ sudo chgrp -R www-data /opt/svn/repos<br />
$ sudo chmod -R g ws /opt/svn/repos<br />
$ sudo svnadmin create /opt/svn/repos/test<br />
$ sudo vi /etc/apache2/mods-available/dav_svn.conf</p>
<p>  # Uncomment this to enable the repository<br />
  DAV svn</p>
<p>  # Set this to the path to your repository<br />
  SVNPath /opt/svn/repos/test</p>
<p>  AuthType Basic<br />
  AuthName &#8220;Subversion Repository&#8221;<br />
  AuthUserFile /opt/svn/repos/test.passwd<br />
  Require valid-user<br />
  SSLRequireSSL</p>
<p>$ sudo htpasswd -c -m /opt/svn/repos/test.passwd test<br />
New password:<br />
Re-type new password:<br />
Adding password for user test</p>
<p>$ sudo /etc/init.d/apache2 restart</p>
<p>now your repository is located at <a href="https://localhost/svn/test" rel="nofollow">https://localhost/svn/test</a><br />
and you have to login using user &#8216;test&#8217; and the password you gave the user.</p>
<p>Sometimes I had trouble accessing the repository, but it was always permission issues and they where solved with<br />
$ sudo chmod -R g ws /opt/svn/repos</p>
<p>Thanks again for a great guide!</p>
<p>&#8211; Frank
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on JSSh for Firefox on Linux (because Firewatir loves it) by Dan Walters</title>
		<link>http://alephzarro.com/blog/2007/03/12/jssh-for-firefox-on-linux-because-firewatir-loves-it/#comment-40849</link>
		<pubDate>Wed, 24 Sep 2008 07:08:57 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/03/12/jssh-for-firefox-on-linux-because-firewatir-loves-it/#comment-40849</guid>
					<description>for mac osx users, I made a jssh xpi for firefox 3.0.2 that can be found here:

http://wiki.openqa.org/download/attachments/13893658/jssh-20080924-Darwin.xpi</description>
		<content:encoded><![CDATA[<p>for mac osx users, I made a jssh xpi for firefox 3.0.2 that can be found here:</p>
<p><a href="http://wiki.openqa.org/download/attachments/13893658/jssh-20080924-Darwin.xpi" rel="nofollow">http://wiki.openqa.org/download/attachments/13893658/jssh-20080924-Darwin.xpi</a>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on JSSh for Firefox on Linux (because Firewatir loves it) by Paul Edwards</title>
		<link>http://alephzarro.com/blog/2007/03/12/jssh-for-firefox-on-linux-because-firewatir-loves-it/#comment-39637</link>
		<pubDate>Mon, 08 Sep 2008 15:49:04 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/03/12/jssh-for-firefox-on-linux-because-firewatir-loves-it/#comment-39637</guid>
					<description>I have just tried to install on ubuntu 8.04 running Firefox version 3.01 and I get the message "JSSh 0.1 could not be installed because it is not compatible with Firefox 3.0.1.". Are there any plans to update it so that it can ? Thanks.</description>
		<content:encoded><![CDATA[<p>I have just tried to install on ubuntu 8.04 running Firefox version 3.01 and I get the message &#8220;JSSh 0.1 could not be installed because it is not compatible with Firefox 3.0.1.&#8221;. Are there any plans to update it so that it can ? Thanks.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on XPather 1.4 on Firefox 3 by svend</title>
		<link>http://alephzarro.com/blog/2008/03/16/xpather-14-on-firefox-3/#comment-39636</link>
		<pubDate>Mon, 08 Sep 2008 15:43:18 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2008/03/16/xpather-14-on-firefox-3/#comment-39636</guid>
					<description>Sorry you haven't gotten more contributions. It looks like such a great tool.

I say "looks" because I haven't gotten it to work yet. Maybe I'm overlooking something really obvious, but when I rightclick a link (or select text and rightclik) and choose "Show in XPather" it opens but with blank fields.  (XP Pro, FF3)

Is there a support forum out there where I could post this issue? I'm figuring it's something really simple, considering how nobody else out there seems to be having this problem.

Any help much appreciated.

Tx.</description>
		<content:encoded><![CDATA[<p>Sorry you haven&#8217;t gotten more contributions. It looks like such a great tool.</p>
<p>I say &#8220;looks&#8221; because I haven&#8217;t gotten it to work yet. Maybe I&#8217;m overlooking something really obvious, but when I rightclick a link (or select text and rightclik) and choose &#8220;Show in XPather&#8221; it opens but with blank fields.  (XP Pro, FF3)</p>
<p>Is there a support forum out there where I could post this issue? I&#8217;m figuring it&#8217;s something really simple, considering how nobody else out there seems to be having this problem.</p>
<p>Any help much appreciated.</p>
<p>Tx.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Installation of Subversion on Ubuntu, with Apache, SSL, and BasicAuth. by Kesteven</title>
		<link>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-36124</link>
		<pubDate>Tue, 05 Aug 2008 15:19:34 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-36124</guid>
					<description>Hello!

I have followed the tutorial, but i can't make it work. After finishing all steps, both lynx from the local machine and other pcs in my network can't access to the svn folder. Access to the apache root folder works fine. I'm using a Ubuntu 8.04 Server Edition (64 bit).

If anybody knows what is the problem, that would help me a lot. Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Hello!</p>
<p>I have followed the tutorial, but i can&#8217;t make it work. After finishing all steps, both lynx from the local machine and other pcs in my network can&#8217;t access to the svn folder. Access to the apache root folder works fine. I&#8217;m using a Ubuntu 8.04 Server Edition (64 bit).</p>
<p>If anybody knows what is the problem, that would help me a lot. Thanks in advance!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Installation of Subversion on Ubuntu, with Apache, SSL, and BasicAuth. by Simisani Takbobana</title>
		<link>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-35125</link>
		<pubDate>Tue, 29 Jul 2008 03:55:04 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-35125</guid>
					<description>I followed the tutorial  and worked fine until I tried to access my SVN repository, it keeps on asking for password and user name without letting me in. Anyone with a clue of what I am might be missing ? I am using Hardy Heron</description>
		<content:encoded><![CDATA[<p>I followed the tutorial  and worked fine until I tried to access my SVN repository, it keeps on asking for password and user name without letting me in. Anyone with a clue of what I am might be missing ? I am using Hardy Heron
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Installation of Subversion on Ubuntu, with Apache, SSL, and BasicAuth. by accaquattro</title>
		<link>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-32269</link>
		<pubDate>Wed, 09 Jul 2008 17:39:08 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth/#comment-32269</guid>
					<description>QUOTE:
Hi,

I fixed the problem, I had to move the

DAV svn
SVNParentPath /var/svn
AuthType Basic
AuthName “Subversion Repository”
AuthUserFile /etc/apache2/dav_svn.passwd
Require valid-user
SSLRequireSSL

from dav_svn.conf to /etc/apache2/sites-available/servername

And insert the data in between the

// right here    </description>
		<content:encoded><![CDATA[<p>QUOTE:<br />
Hi,</p>
<p>I fixed the problem, I had to move the</p>
<p>DAV svn<br />
SVNParentPath /var/svn<br />
AuthType Basic<br />
AuthName “Subversion Repository”<br />
AuthUserFile /etc/apache2/dav_svn.passwd<br />
Require valid-user<br />
SSLRequireSSL</p>
<p>from dav_svn.conf to /etc/apache2/sites-available/servername</p>
<p>And insert the data in between the</p>
<p>// right here
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
