Some SVN Repositories not working - 405

Posted by Webnet on Server Fault See other posts from Server Fault or by Webnet
Published on 2010-06-11T17:24:37Z Indexed on 2010/06/11 17:33 UTC
Read the original article Hit count: 228

Filed under:

I have 2 groups of repositories, web and engineering. I setup web about 3 months ago and it works great, I'm trying to move engineering over to this same SVN server and I'm getting a PROPFIND of /svn/engineering/main: 405 Method Not Allowed error when I try to do a checkout.

I can checkout/commit for /svn/web just fine

dav_svn.conf

This is the only thing uncommented in this file....

  <Location /svn/web>
        DAV svn
        SVNParentPath /var/svn-repos/web
        AuthType Basic
        AuthName "SVN Repository"
        AuthUserFile /etc/svn-auth-file
        Require valid-user
  </Location>
  <Location /svn/engineering>
        DAV svn
        SVNParentPath /var/svn-repos/engineering
        AuthType Basic
        AuthName "SVN Repository"
        AuthUserFile /etc/svn-auth-file
        Require valid-user
  </Location>

/var/svn-repos/

drwxrwx--- 3 www-data subversion 4096 2010-06-11 11:57 engineering
drwxrwx--- 5 www-data subversion 4096 2010-04-07 15:41 web

/var/svn-repos/web - WORKING

drwxrwx--- 7 www-data subversion 4096 2010-04-07 16:50 site1.com
drwxrwx--- 7 www-data subversion 4096 2010-03-29 16:42 site2.com
drwxrwx--- 7 www-data subversion 4096 2010-03-31 12:52 site3.com

/var/svn-repos/engineering - NOT WORKING

drwxrwx--- 6 www-data subversion      4096 2010-06-11 11:56 main

I get to the bottom and now realize that there's a 6 on that last one not a 7..... what does that number mean?

© Server Fault or respective owner

Related posts about svn