I'm new to the whole SVN thing, it's pretty sweet so I thought I might try it
out on my home computer. 
I have:
Windows 7 Ultimate x32

I installed the following programs:
Apache 2.0.64
Subversion 1.5.1
TortoiseSVN 1.6.14.21012

I added the following lines to Program Files\Apache
Group\Apache2\conf\httpd.conf
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so

I added the following code to the end of Program Files\Apache
Group\Apache2\conf\httpd.conf
<Location /svn>
DAV svn
SVNPath "C:\svn"
AuthType Basic
AuthName "Subversion repository"
AuthUserFile "c:\svn_conf\passwd"
Require valid-user
</Location>

My repository is located in C:\svn
My passwd is located in C:\svn_conf

I am able to import a Project into my repository, and also check it out
also.
But when I try to access http://localhost/svn/ I get the following message 
<D:error>
    <C:error/>
    <m:human-readable errcode="160043">Could not open the requested SVN
filesystem</m:human-readable>
</D:error>

The apache error.log produces:
[Wed Mar 23 23:51:43 2011] [error] [client 192.168.1.1] Could not open the
requested SVN filesystem  [500, #160043]

The apache access.log produces:
192.168.1.1 - name [23/Mar/2011:23:51:43 -0500] "GET /svn HTTP/1.1" 500 239 

My goal is to be able to access my SVN Repository for anywhere. I created a
no-ip dns host, and when I try to check out my project

URL of Repository:
http://(my url)/svn

I'm get my authentication window, and my username and password work, but I
get the following error:
Could not open the requested SVN filesystem

I'm guessing that the error I got before, is involved with this.
-- 
View this message in context: 
http://old.nabble.com/SVN-is-causing-errors.-tp31226203p31226203.html
Sent from the Subversion Users mailing list archive at Nabble.com.

Reply via email to