On Apr 10, 2009, at 14:27, Gregor Hauseder wrote:
> i've a problem with svn and thought that maybe you can help me :)
> Like you can see in the subject, i get the errorcode 720002. What
> i've done:
> 1)i installed apache and subversion.
> 2)deleted the '#' at this 2 lines in the httpd.conf
> #LoadModule dav_fs_module modules/mod_dav_fs.so
> #LoadModule dav_module modules/mod_dav.so
> 3)Added this 2 lines below
> LoadModule dav_svn_module modules/mod_dav_svn.so
> LoadModule authz_svn_module modules/mod_authz_svn.so
> 4)And added this location block at the bottom of the file
> <Location /svn>
> DAV svn
> SVNListParentPath on
> SVNParentPath C:\svn_repository\
> AuthType Basic
> AuthName "Subversion-Projektarchiv"
> AuthUserFile passwd
> #AuthzSVNAccessFile svnaccessfile
> Require valid-user
> </Location>
>
> Now, if i type "http://localhost/svn" i can see any folder i've
> created before. There are also files in there (some .txt). Now, if
> i click on the link, i get the errorcode 720002, Could not open the
> requested SVN filesystem.
Is C:\svn_repository a Subversion repository (that you created with
"svnadmin create C:\svn_repository"), or is it a directory that
contains Subversion repositories (that you created with "svnadmin
create C:\svn_repository\a_repository" and "svnadmin create C:
\svn_repository\another_repository")? If it's the former, you want
SVNPath, not SVNParentPath.
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1635083
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-04-10 21:49:21 CEST