webdav problem

Discussion in 'Apache' started by rygel, Nov 18, 2008.

  1. #1
    Hello!
    I am trying to set up access to svn throw webdav.

    steps:
    1. Load modules:
    LoadModule dav_svn_module modules/mod_dav_svn.so
    LoadModule authz_svn_module modules/mod_authz_svn.so

    2. Set up location for svn

    <Location /svn/test>
    DAV svn
    SVNPath D:/svn/test.
    AuthType Basic
    AuthName "SVN Repository"
    AuthzSVNAccessFile conf/svn/svnaccess.conf
    AuthUserFile conf/svn/svnusers.conf
    Require valid-user
    Order allow,deny
    Allow from all
    </Location>

    3. svnaccess.conf:
    [groups]
    admins = Test

    [/]
    @admins = rw
    rygel=rw

    4. svnusers.conf contains user names and passwords

    Problem:
    From browser or webdav client i can log in and see the structure of folders in svn dir, but i can't change files.

    BitKinex webdav client show error: "Http conflict"

    SkunkDav: 409 Conflict

    In error.log:
    File does not exist: C:/xampp/htdocs/svn
    <DAV:cannot-modify-checked-in-parent> [409, #0]
    <DAV:cannot-modify-checked-in-parent> [409, #0]

    Question: how to solve the problem?
     
    rygel, Nov 18, 2008 IP
  2. rygel

    rygel Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    the problem was salved by adding in location:
    SVNAutoversioning on
     
    rygel, Nov 18, 2008 IP