[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [TSVN] Tortoise SVN Propfind error

From: SteveKing <steveking_at_gmx.ch>
Date: 2005-06-04 09:55:45 CEST

Eric Brown wrote:

> When using the repos browser in TSVN 1.1.7 (XP), I get a propfind
> error that shows the following:
>
> Propfind requrest failed on /
> profind of /: 405 Method Not Allowed
>
> Upon searching the mailing list, I discovered that this is a common
> problem, and that the answer probably lies in:
>
> 1) my httpd.conf file
> 2) file permissions
>
> So, here's my setup:
>
> Apache's user has full read/write access to my repository.
> My httpd.conf file contains
>
> LoadModule dav_module modules/mod_dav.so
> LoadModule dav_svn_module modules/mod_dav_svn.so
> <Location /svn>
> DAV svn
> SVN Path /path/to/repos
> </Location>
>
> <Directory /export/subserv/repos>
> Order allow, deny
> Allow from all
> AuthType Basic
> AuthName "My Repository"
> AuthUserFile /etc/svn-auth-file
> Require valid-user
> </Directory>

<Location /svn>
    DAV svn
    SVN Path /path/to/repos
    Order allow, deny
    Allow from all
    AuthType Basic
    AuthName "My Repository"
    AuthUserFile /etc/svn-auth-file
    Require valid-user
</Location>

is the key.

> <Directory /export/subserv/repos>
> ...
> </Directory>

That directory isn't even known to apache, only Subversion knows that
directory 'exists'.

> This setup works in my browser (firefox), and authentication is OK.
> I don't have any Limit directives in my config file.
> I think the problem lies somewhere in the section I posted above,
> can't seem to put it all
> together. Any help would be appreciated.

If something works with the browser, that doesn't really mean it also
works with Subversion. The browser only get's a http page provided by
the Subversion server.
Subversion clients however talk to the server not via http but DAV.

Stefan

-- 
        ___
   oo  // \\      "De Chelonian Mobile"
  (_,\/ \_/ \     TortoiseSVN
    \ \_/_\_/>    The coolest Interface to (Sub)Version Control
    /_/   \_\     http://tortoisesvn.tigris.org
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
Received on Sat Jun 4 09:56:03 2005

This is an archived mail posted to the TortoiseSVN Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.