How to configure webdav ?

Discussion in 'Installation/Configuration' started by pier56, Oct 10, 2010.

  1. pier56

    pier56 Member

    Apaches modules are enabled.
    dav_fs
    dav
    auth_digest

    I have added into an existing website site.vhost :

    <IfModule mod_dav_fs.c>
    # DO NOT REMOVE THE COMMENTS!
    # IF YOU REMOVE THEM, WEBDAV WILL NOT WORK ANYMORE!
    # WEBDAV BEGIN
    # WEBDAV END
    </IfModule>

    And after ?
    It is not inside the manuel (5 euros !)

    Thanks !
     
  2. pier56

    pier56 Member

    First response

    Code:
        <IfModule mod_dav_fs.c>
        # DO NOT REMOVE THE COMMENTS!
        # IF YOU REMOVE THEM, WEBDAV WILL NOT WORK ANYMORE!
        # WEBDAV BEGIN
        Alias /dav /var/www/site.fr/web/dav
        DavMinTimeout 600
        <Location /dav>
            Options None
            Dav On
            <Limit GET PUT POST DELETE PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
                AuthType Basic
                AuthName "WebDav gerons"
                AuthUserFile /var/www/site.fr/web/dav/passwd.dav
                Require valid-user
            </Limit>
        </Location>
        # WEBDAV END
        </IfModule>
    It works, I can connect and read a file.

    I can create a Windows access web share (Windows 7)
    I can identify.
    But I can't read...
     
    Last edited: Oct 10, 2010
  3. falko

    falko Super Moderator Howtoforge Staff

    What do you mean with that?
     
  4. pier56

    pier56 Member

    Windows access to webdav

    I can create windows webdav share.

    I can authentify.

    But I can't see and access files of this share, with Windows 7.

    With Windows XP, it works, I can read, write, create folders, delete.
     
    Last edited: Oct 11, 2010
  5. till

    till Super Moderator Staff Member ISPConfig Developer

  6. pier56

    pier56 Member

    Choosing ftp

    I choose to work with FTP, for the fiability.

    Thanks.
     
  7. Germanius

    Germanius Member

  8. till

    till Super Moderator Staff Member ISPConfig Developer

    Webdav works fine for me on windows 7 with ispconfig 3.0.3.2. No manual changes nescessary. Just create a webdav user in ispconfig and then enter the webdav url in windows. Windows asks then for the password and connects without any problems.
     
  9. Germanius

    Germanius Member

    Which URL do you use?
    I tried some combinations e.g. http://mydomain.de/webdav/webdavuser but I always get "Der eingegebene Ordner ist ungültig. Wählen Sie einen anderen Ordner".
     
    Last edited: Jan 11, 2011
  10. DKLeader

    DKLeader Member

    Hi,
    I use
    Code:
    http://[domain]/webdav/[folder]
    "folder" being the one set in "Sites/Webdav User/Directory"

    I have testet on "windows 7 - 64 bit", "vista - 32 bit" and "vista - 64 bit" without any problems.
     

Share This Page