This regards the documentation found at http://httpd.apache.org/docs/ 2.2/mod/mod_dav.html involving configuration for mod_dav, the WebDAV module for Apache 2.2.

The examples all fail to include the "Order" and "Allow from" directives that are necessary to connect to the WebDAV, at least in my tests.

For example, under the "Complex Configurations" section of the documentation, the example is:

Alias /phparea /home/gstein/php_files
Alias /php-source /home/gstein/php_files
<Location /php-source>
  DAV On
  ForceType text/plain
</Location>

This sort of example fails to allow the dav directory to be browsed or connected to, because the directive is missing for Order allow,deny and Allow from All. With these directives added, webdav works as expected:

Alias /phparea /home/gstein/php_files
Alias /php-source /home/gstein/php_files
<Location /php-source>
  DAV On
  ForceType text/plain

  Order Allow,Deny  # Added to allow
  Allow from All          # webdav connections

</Location>

Each example fails to include:
  Order Allow, Deny
  Allow from All

inside of the <Location> element. Each example should include the Order and Allow from directives to work correctly.

--Vess




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to