Hi,
I have installed Mongoose as a WebDav server, and it seems to work fine when there is content to view in the server... but whenever i try and create a new directory or upload a file to the WebDav server, it fails.
I am using CarotDav as my client, and here is the exact error:
Rei.Fs.SimpleWebException: The remote server returned an error: (400) Bad Request.
at Rei.Fs.Webdav.WebdavFs.GetResponse(HttpWebRequest request, Boolean notreqstream)
at Rei.Fs.Webdav.WebdavFs.CreateCollection(ResourceId parendid, String name)
at CarotDAV.CacheManager.CreateCollection(FsBase fs, ResourceId parentid, String name)
at CarotDAV.MainForm.Fs_CreateCollection(ResourceId parentid, String name)
This is my Mongoose.conf config file:
# cgi_pattern **.cgi$|**.pl$|**.php$
# cgi_environment <value>
put_delete_passwords_file priv.txt
# cgi_interpreter <value>
# protect_uri passwords.txt
authentication_domain localhost
# ssi_pattern **.shtml$|**.shtm$
# throttle <value>
access_log_file access.log
# enable_directory_listing yes
error_log_file error.log
global_passwords_file passwords.txt
# index_files index.html,index.htm,index.cgi,index.shtml,index.php
# enable_keep_alive no
# access_control_list <value>
# extra_mime_types <value>
listening_ports 443s
document_root httproot
ssl_certificate cert.pem
# num_threads 20
# run_as_user <value>
# url_rewrite_patterns <value>
# hide_files_patterns <value>
What have i done wrong ??
N