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

2 servers/checkout to webdav (network place)

From: <J.Riemer_at_iaea.org>
Date: 2005-02-02 15:31:50 CET

Hi,

I have following problem: I run Windows2k, a local apache 2.0.52
Subversion 1.1.3 plus TortoiseSVN 1.1.3 - so far so good, everything works just
fine. Now I want to checkout files not only on my machine but also to a webserver
which also runs Apache 2.0.52. There I activated WebDAV and was able to add this
network resource to "My Network Places". I am also able to access this folder
(read/write) with the Windows-Explorer.

Now if I try to checkout in this folder by means of Tortoise, it doesn't pop
any error messages in fact I see how items are added in the status-pane of
Tortoise, but nothing really gets copied to my webserver.

I also tried to checkout via command line with a 301 error showing up (see below)

----------

here the changes to my apache configuration

1st server:
this is my developement machine where I keep the repository

  LoadModule dav_module modules/mod_dav.so
  LoadModule dav_svn_module modules/mod_dav_svn.so
  LoadModule dav_fs_module modules/mod_dav_fs.so
  <Location /svn>
    DAV svn
    SVNParentPath c:/svn
    #securtiy goes here
  </Location>

2nd server:
(this is where I want to checkout the files)

DocumentRoot "F:/Inetpub/wwwroot"

LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so

DavLockDB F:/Inetpub/wwwroot/weblock
Alias /dav F:/Inetpub/wwwroot/webdav/
<Directory "F:/Inetpub/wwwroot/webdav">
  Dav On
# Order Allow,Deny
# Allow from 161.5.151.49
# Allow from 161.5.151.85
# AuthType Basic
# AuthName "WebDav"
# AuthLDAPURL ldap://ldap.iaea.org/o=iaea.org?uid
# Require user xa-riemer xa-curro
# Satisfy Any
</Directory>

--------------------
  
svn command lines:

C:\>C:/Subversion/bin/svn checkout http://127.0.0.1/svn/projectA http://www.abc.com/dav

A projectA\test.text
Checked out revision 4.
svn: PROPFIND request failed on '/dav'
svn: PROPFIND of '/dav': 301 Moved Permanently (http://inis-a4.iaea.org)

I then read the FAQ concerning 301-error and altered the config file, resulting in
yet another error, I changed the DAV location to be the documentRoot (which was
actually my intention) So my root-directory became a DAV directory that was
also accessible on my 1st (developing) machine

  LoadModule dav_module modules/mod_dav.so
  LoadModule dav_fs_module modules/mod_dav_fs.so

  DavLockDB F:/Inetpub/wwwroot/DavLock/
  Alias /dav F:/Inetpub/wwwroot/
  <Directory "F:/Inetpub/wwwroot/">
    Dav On
    #security goes here
  </Directory>

now here is the command line and the new error:

C:\>C:/Subversion/bin/svn checkout http://127.0.0.1/svn/projectA http://www.abc.com/
Checked out revision 4.
svn: The VCC property was not found on the resource

Any ideas?

This email message is intended only for the use of the named recipient.
Information contained in this email message and its attachments may be
privileged, confidential and protected from disclosure. If you are not the
intended recipient, please do not read, copy, use or disclose this
communication to others. Also please notify the sender by replying to this
message and then delete it from your system.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Feb 2 15:35:01 2005

This is an archived mail posted to the Subversion Users mailing list.

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