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?