Since the example is on Windows they think you should give write access to Everyone, that shouldn't be the case if yo do it in Linux.
Should be enough that apache has write access to the folder where you store backups.
For Apache Web Servers
Create a “backup” folder under the root directory of your Web server, and make the folder writable by everyone. All backup files will be stored in that directory.
If your backup folder is for instance C:/Program Files/Apache Group/Apache2/htdocs/backup, the 46xxsettings.txt file should have a line similar to:
[SET BRURI
]
If your backup folder is the root directory, the 46xxsettings.txt file should have a line similar to:
[SET BRURI
]
Edit your Web server configuration file httpd.conf.
Uncomment the two LoadModule lines associated with DAV:
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
NOTE: If these modules are not available on your system, typically the case on some Unix/Linux Apache servers, you have to recompile these two modules (mod_dav & mod_dav_fs) into the server. Other ways to load these modules might be available. Check your Apache documentation at
for more details.
Add the following lines in the httpd.conf file:
#
# WebDAV configuration
#
DavLockDB "C:/Program Files/Apache Group/Apache2/var/DAVLock"
<Location />
Dav On
</Location>
For Unix/Linux Web servers the fourth line might look more like:
DavLockDB/usr/local/apache2/var/DAVLock
Create the var directory and make it writable by everyone. Right click Properties-->Security-->Add-->Everyone-->Full Control.
"Trying is the first step to failure..." - Homer