Apache 2.2 WebDav Anonymous access -


i sorta have http config working apache 2.2 allows webdav. @ least can use winscp client attach dav account listed below.

but have older clunkier clients may work anonymous access. , not working.

  1. windows 7 (map drive), pops credentials not log in.
  2. falconview (probably understands anonymous login

any idea doing wrong here anon access? novice @ httpd.conf

(the environment variable ${egpl_jobspath} resolves windows path:

e.g. f:\jobs

alias /jobs ${egpl_jobspath} <ifmodule dav_lock_module>     davlockdb "${egpl_jobspath}" </ifmodule> <directory "${egpl_jobspath}">     header set access-control-allow-origin "*"     dav on     require valid-user     options indexes followsymlinks     order allow,deny     allow       <limitexcept propfind options report>         require user me     </limitexcept>     authtype basic     authname dav     authuserfile conf/users.passwords </directory> 

the way work, turn off authentication , leave webdav folder open world. still hear people better ideas:

alias /jobs ${egpl_jobspath} <ifmodule dav_lock_module>     davlockdb "${egpl_librarianpath}" </ifmodule> <directory "${egpl_jobspath}">     header set access-control-allow-origin "*"     dav on </directory> 

Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Website Login Issue developed in magento -

Can the constants be defined inside a model file of a framework in PHP? -