Is webdav disabled?

Discussion in 'Installation/Configuration' started by schwim, Aug 18, 2018.

  1. schwim

    schwim Member HowtoForge Supporter

    Hi there!

    I've moved my Afterlogic Webmail install from one of my servers to a Debian 9 machine running ISPC 3. When I did that, my webdav app quit working, spitting out a 405 error. I've done a lot of trial and error(switching PHP from fast cgi to mod php) and the issue persists. I found this page that states:

    Which leads me to my question; Is webdav disabled on my server and if so, how would I enable it?

    thanks for your time!
     
  2. schwim

    schwim Member HowtoForge Supporter

    Bumping in hopes of an answer.

    Thanks for your time!
     
  3. Jesse Norell

    Jesse Norell Well-Known Member Staff Member Howtoforge Staff

    You can see what modules are enabled with apachectl -M:
    Code:
    # apachectl -M | grep dav                                                                                                         
     dav_module (shared)
     dav_fs_module (shared)
    
    You can enable with a2enmod:
    Code:
    # a2enmod dav dav_fs
    Module dav already enabled
    Considering dependency dav for dav_fs:
    Module dav already enabled
    Module dav_fs already enabled
    
    # systemctl restart apache2
    
     
  4. schwim

    schwim Member HowtoForge Supporter

    Hi there Jesse and thanks very much for your help!

    This is what I got with the first command. It doesn't look quite like yours as I get some warnings:

    My second command shows that the modules are already enabled:

    Do you have any idea what else I can do to get webdav working on this server? I get the 405 error in spite of it seeming to be enabled.

     
  5. till

    till Super Moderator Staff Member ISPConfig Developer

    ISPConfig configures webdav, so it might be that the webdav config in the vhost conflicts with the webdav config of the software that you installed.you installed
     

Share This Page