You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Atul Bharad <at...@direct2s.com> on 2004/12/09 12:29:39 UTC

Subversion-Apach Error!

Hi!

I configured subversion-1.1.1 on Linux box and also configured
apache-2.52 to point to svn repository. But when i try to access it, it
gives error like,

<D:error>
<C:error/>
<m:human-readable errcode="160000">
Could not open the requested SVN filesystem
</m:human-readable>
</D:error>

Below is my apache location module,

<Location /svn>
  DAV svn
  SVNPath /home/svn/repos
  AuthType Basic
  AuthName "My Subversion Repository"
  AuthUserFile /home/svn/etc/passwd
  Require valid-user
</Location>

I also checked permissions, but apache have read/write permission 
repostory.

Any help in this regard is welcomed!


Regards,

Atul



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Subversion-Apach Error!

Posted by anton <an...@nezzwerk.com>.
Atul Bharad wrote:
> 
> <Location /svn>
>   DAV svn
>   SVNPath /home/svn/repos
>   AuthType Basic
>   AuthName "My Subversion Repository"
>   AuthUserFile /home/svn/etc/passwd
>   Require valid-user
> </Location>

it seems like you need to use SVNParentPath as opposed to SVNPath:

SVNParentPath /home/svn/repos

see the link below for more details:
http://svnbook.red-bean.com/en/1.1/ch06s04.html
-- 
anton

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org