<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Red Hat / CentOS Linux: Apache Enable WebDAV</title> <atom:link href="http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/feed/" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/</link> <description>Every answer asks a more beautiful question.</description> <lastBuildDate>Fri, 10 Feb 2012 19:55:56 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Richard</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-54890</link> <dc:creator>Richard</dc:creator> <pubDate>Fri, 14 Jan 2011 13:16:11 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-54890</guid> <description>Thank you very much! Worked like a charm on my Centos virtual machine. I use no-ip.org dyndns to forward to the centos VM and can now easily access, transfer (up and download) and edit files on my iPad from anywhere. The free iPad App Webdav Nav works excellent in this combination!</description> <content:encoded><![CDATA[<p>Thank you very much! Worked like a charm on my Centos virtual machine. I use no-ip.org dyndns to forward to the centos VM and can now easily access, transfer (up and download) and edit files on my iPad from anywhere. The free iPad App Webdav Nav works excellent in this combination!</p> ]]></content:encoded> </item> <item><title>By: luigi</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-49164</link> <dc:creator>luigi</dc:creator> <pubDate>Wed, 01 Sep 2010 22:47:36 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-49164</guid> <description>Hi, a few months ago, i configure my apache server to allow web dav calendar sharing.
im using outlook 2007 as a cliente, and now people who share their calendar, has loss all the appointments and task, olders than three monts.
If someone know how this could happend, i really appreciate your help.
Thanks.</description> <content:encoded><![CDATA[<p>Hi, a few months ago, i configure my apache server to allow web dav calendar sharing.<br
/> im using outlook 2007 as a cliente, and now people who share their calendar, has loss all the appointments and task, olders than three monts.<br
/> If someone know how this could happend, i really appreciate your help.<br
/> Thanks.</p> ]]></content:encoded> </item> <item><title>By: Amsterdam</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-43053</link> <dc:creator>Amsterdam</dc:creator> <pubDate>Wed, 12 Aug 2009 18:25:12 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-43053</guid> <description>Okay, here is &lt;cite&gt;what I did&lt;/cite&gt; on my CentOS 5.3 BlueOnyx box..
In /etc/httpd/conf/httpd.conf , I have the following:
If you don&#039;t have dav_fs module I guess you&#039;ll simply use &lt;cite&gt;mod_dav.c&lt;/cite&gt;..
&lt;code&gt;&lt;IfModule mod_dav_fs.c&gt;
DAVLockDB /var/lib/dav/lockdb
DAVDepthInfinity On
DAVMinTimeout 600
&lt;/IfModule&gt;&lt;/code&gt;
I make a my directory &lt;cite&gt;webdav&lt;/cite&gt; (in root, not in /web).
I add my user-login to a pwd file.
&lt;code&gt;
mkdir /home/sites/your.domain.tld/webdav (give it rights)
htpasswd -c /etc/httpd/your.webdav.users.pwd yourname
&lt;/code&gt;
For my sites, BX takes care of loading configs for vhosts.
So, for vhost #14 I have the following for /etc/httpd/conf/vhosts/site14.include
&lt;code&gt;&lt;Directory /home/sites/your.domain.tld/web&gt;
Options Indexes FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
&lt;/Directory&gt;
&lt;IfModule mod_dav_fs.c&gt;
LimitXMLRequestBody 131072
&lt;Directory /home/sites/your.domain.tld/webdav&gt;
# Options none
Options Indexes FollowSymLinks
IndexOptions FancyIndexing
AllowOverride None
Order allow,deny
Allow from all
&lt;/Directory&gt;
Alias /webdav &quot;/home/sites/your.domain.tld/webdav&quot;
&lt;Location /webdav&gt;
DAV On
AuthType Basic
AuthName DAV
AuthUserFile /etc/httpd/your.webdav.users.pwd
&lt;LimitExcept GET HEAD OPTIONS&gt;
require user yourname
&lt;/LimitExcept&gt;
&lt;/Location&gt;
&lt;/IfModule&gt;  &lt;/code&gt;
This way, you can make seperate settings, like if you want browser web-access. If not, you can uncomment the commented &lt;cite&gt;Options None&lt;/cite&gt;, and comment the current Options and IndexOptions.  Alike you can change access by chaging the &lt;cite&gt;Limit&lt;/cite&gt; or &lt;cite&gt;LimitExept&lt;/cite&gt;.
Keep in touch with the dutch.
regards, Frank</description> <content:encoded><![CDATA[<p>Okay, here is<cite>what I did</cite> on my CentOS 5.3 BlueOnyx box..<br
/> In /etc/httpd/conf/httpd.conf , I have the following:<br
/> If you don&#8217;t have dav_fs module I guess you&#8217;ll simply use<cite>mod_dav.c</cite>..</p><p><code>&lt;IfModule mod_dav_fs.c&gt;<br
/> DAVLockDB /var/lib/dav/lockdb<br
/> DAVDepthInfinity On<br
/> DAVMinTimeout 600<br
/> &lt;/IfModule&gt;</code></p><p>I make a my directory<cite>webdav</cite> (in root, not in /web).<br
/> I add my user-login to a pwd file.<br
/> <code><br
/> mkdir /home/sites/your.domain.tld/webdav (give it rights)<br
/> htpasswd -c /etc/httpd/your.webdav.users.pwd yourname<br
/> </code></p><p>For my sites, BX takes care of loading configs for vhosts.<br
/> So, for vhost #14 I have the following for /etc/httpd/conf/vhosts/site14.include</p><p><code>&lt;Directory /home/sites/your.domain.tld/web&gt;<br
/> Options Indexes FollowSymLinks<br
/> AllowOverride None<br
/> Order deny,allow<br
/> Allow from all<br
/> &lt;/Directory&gt;</p><p>&lt;IfModule mod_dav_fs.c&gt;</p><p> LimitXMLRequestBody 131072</p><p> &lt;Directory /home/sites/your.domain.tld/webdav&gt;<br
/> # Options none<br
/> Options Indexes FollowSymLinks<br
/> IndexOptions FancyIndexing<br
/> AllowOverride None<br
/> Order allow,deny<br
/> Allow from all<br
/> &lt;/Directory&gt;</p><p> Alias /webdav "/home/sites/your.domain.tld/webdav"</p><p> &lt;Location /webdav&gt;<br
/> DAV On<br
/> AuthType Basic<br
/> AuthName DAV<br
/> AuthUserFile /etc/httpd/your.webdav.users.pwd<br
/> &lt;LimitExcept GET HEAD OPTIONS&gt;<br
/> require user yourname<br
/> &lt;/LimitExcept&gt;<br
/> &lt;/Location&gt;<br
/> &lt;/IfModule&gt; </code></p><p>This way, you can make seperate settings, like if you want browser web-access. If not, you can uncomment the commented<cite>Options None</cite>, and comment the current Options and IndexOptions.  Alike you can change access by chaging the<cite>Limit</cite> or<cite>LimitExept</cite>.</p><p>Keep in touch with the dutch.<br
/> regards, Frank</p> ]]></content:encoded> </item> <item><title>By: Amsterdam</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-43052</link> <dc:creator>Amsterdam</dc:creator> <pubDate>Wed, 12 Aug 2009 18:15:47 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-43052</guid> <description>Test interface before I answer..
&lt;code&gt;&lt;dude/&quot;web&quot;&gt;&lt;/code&gt;
&lt;cite&gt;citing&lt;/cite&gt;</description> <content:encoded><![CDATA[<p>Test interface before I answer..<br
/> <code>&lt;dude/"web"&gt;</code><br
/><cite>citing</cite></p> ]]></content:encoded> </item> <item><title>By: Amsterdam</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-42923</link> <dc:creator>Amsterdam</dc:creator> <pubDate>Thu, 06 Aug 2009 21:59:59 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-42923</guid> <description>Niels, that is what I&#039;m experiencing at my live BX box too. However, it works perfect in my localhost testing box at home. Both are BX CentOS5.3.  The example above works.  Im a rookie, Im figuring out my next move.</description> <content:encoded><![CDATA[<p>Niels, that is what I&#8217;m experiencing at my live BX box too. However, it works perfect in my localhost testing box at home. Both are BX CentOS5.3.  The example above works.  Im a rookie, Im figuring out my next move.</p> ]]></content:encoded> </item> <item><title>By: niels</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-42891</link> <dc:creator>niels</dc:creator> <pubDate>Tue, 04 Aug 2009 16:40:57 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-42891</guid> <description>Hi,
I have an Centos 5.3 Server running
But it won&#039;t work. When i try to connect i&#039;am getting the message :
Could not acces /webdav/ 405 Method Not Allowed
Connection to &#039;localhost&#039; closed..
Can you help me?</description> <content:encoded><![CDATA[<p>Hi,</p><p>I have an Centos 5.3 Server running<br
/> But it won&#8217;t work. When i try to connect i&#8217;am getting the message :<br
/> Could not acces /webdav/ 405 Method Not Allowed<br
/> Connection to &#8216;localhost&#8217; closed..</p><p>Can you help me?</p> ]]></content:encoded> </item> <item><title>By: Amsterdam</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-42856</link> <dc:creator>Amsterdam</dc:creator> <pubDate>Mon, 03 Aug 2009 01:36:41 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-42856</guid> <description>Sorry for my broken post. That isnt really a userfriendly interface here..  ;-)</description> <content:encoded><![CDATA[<p>Sorry for my broken post. That isnt really a userfriendly interface here..  ;-)</p> ]]></content:encoded> </item> <item><title>By: Amsterdam</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-42855</link> <dc:creator>Amsterdam</dc:creator> <pubDate>Mon, 03 Aug 2009 01:32:57 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-42855</guid> <description>Hi, Im on a BlueOnyx box (CentOS 5.3).
I used the &lt;b&gt;updated&lt;/b&gt; part, not the example above it.
My Apache httpd.conf already had WebDAV, which I left untouched:
&lt;code&gt;
# Location of the WebDAV lock database.
DAVLockDB /var/lib/dav/lockdb
&lt;/code&gt;
I have user includes, for user specific httpd config. There, I added your example. And I changed &lt;code&gt;&lt;/code&gt; to my &lt;code&gt;&lt;/code&gt;. Works like a charm. Connected on my OS-X desktop. And on the interwebs it asked for authentication.  Thanks for the example here.</description> <content:encoded><![CDATA[<p>Hi, Im on a BlueOnyx box (CentOS 5.3).<br
/> I used the <b>updated</b> part, not the example above it.<br
/> My Apache httpd.conf already had WebDAV, which I left untouched:<br
/> <code><br
/> # Location of the WebDAV lock database.<br
/> DAVLockDB /var/lib/dav/lockdb<br
/> </code></p><p>I have user includes, for user specific httpd config. There, I added your example. And I changed <code></code> to my <code></code>. Works like a charm. Connected on my OS-X desktop. And on the interwebs it asked for authentication.  Thanks for the example here.</p> ]]></content:encoded> </item> <item><title>By: akuba</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-40730</link> <dc:creator>akuba</dc:creator> <pubDate>Fri, 13 Mar 2009 15:06:25 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-40730</guid> <description>thanks!</description> <content:encoded><![CDATA[<p>thanks!</p> ]]></content:encoded> </item> <item><title>By: John Paul</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-39647</link> <dc:creator>John Paul</dc:creator> <pubDate>Mon, 29 Dec 2008 14:30:02 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-39647</guid> <description>Hi
I am wondering if this is possible;
read only for everyone, and only write access for people allowed to modify the site.
im in the process of rebuilding a website and will be using Adobe Contribute for 3 staff to update the site, but it will need to be publically viewable, but only writable by 3 staff, is this easy to acomplish?</description> <content:encoded><![CDATA[<p>Hi</p><p>I am wondering if this is possible;</p><p>read only for everyone, and only write access for people allowed to modify the site.</p><p>im in the process of rebuilding a website and will be using Adobe Contribute for 3 staff to update the site, but it will need to be publically viewable, but only writable by 3 staff, is this easy to acomplish?</p> ]]></content:encoded> </item> <item><title>By: Jason</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-39362</link> <dc:creator>Jason</dc:creator> <pubDate>Wed, 03 Dec 2008 19:36:06 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-39362</guid> <description>Thanks for the update.  Your website has been so helpful.  One more tip: if you&#039;re doing WebDAV over the Internet and using authentication (which you should) be sure to enable HTTPS to protect those passwords.</description> <content:encoded><![CDATA[<p>Thanks for the update.  Your website has been so helpful.  One more tip: if you&#8217;re doing WebDAV over the Internet and using authentication (which you should) be sure to enable HTTPS to protect those passwords.</p> ]]></content:encoded> </item> <item><title>By: vivek</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-39361</link> <dc:creator>vivek</dc:creator> <pubDate>Wed, 03 Dec 2008 19:17:45 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-39361</guid> <description>@Manoj / Jason,
The faq has been updated to fix the problem. Let me know if you need anything else.</description> <content:encoded><![CDATA[<p>@Manoj / Jason,</p><p>The faq has been updated to fix the problem. Let me know if you need anything else.</p> ]]></content:encoded> </item> <item><title>By: Jason</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-39360</link> <dc:creator>Jason</dc:creator> <pubDate>Wed, 03 Dec 2008 19:05:16 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-39360</guid> <description>How do we provide for authentication?  Do you recommend just using an .htaccess file?</description> <content:encoded><![CDATA[<p>How do we provide for authentication?  Do you recommend just using an .htaccess file?</p> ]]></content:encoded> </item> <item><title>By: Jason</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-39359</link> <dc:creator>Jason</dc:creator> <pubDate>Wed, 03 Dec 2008 19:04:06 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-39359</guid> <description>I think this article is missing something and the comments tried to clean it up, but they too didn&#039;t work on my CentOS system.  Put the following in a file /etc/httpd/conf.d/webdav.conf and then reload httpd.
Alias /webdav /home/httpd/webdav/
Options None
AllowOverride None
Order allow,deny
Allow from all
Dav on </description> <content:encoded><![CDATA[<p>I think this article is missing something and the comments tried to clean it up, but they too didn&#8217;t work on my CentOS system.  Put the following in a file /etc/httpd/conf.d/webdav.conf and then reload httpd.</p><p>Alias /webdav /home/httpd/webdav/</p><p> Options None<br
/> AllowOverride None<br
/> Order allow,deny<br
/> Allow from all<br
/> Dav on</p> ]]></content:encoded> </item> <item><title>By: Manoj</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-39358</link> <dc:creator>Manoj</dc:creator> <pubDate>Wed, 03 Dec 2008 12:45:27 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-39358</guid> <description>menting &quot;Dav on&quot; under  would work
-----------
Alias /webdav /home/httpd/webdav
Options None
AllowOverride None
Order allow,deny
Allow from all
Dav on
=======================</description> <content:encoded><![CDATA[<p>menting &#8220;Dav on&#8221; under  would work</p><p>&#8212;&#8212;&#8212;&#8211;<br
/> Alias /webdav /home/httpd/webdav</p><p>Options None<br
/> AllowOverride None<br
/> Order allow,deny<br
/> Allow from all<br
/> Dav on</p><p>=======================</p> ]]></content:encoded> </item> <item><title>By: Manoj</title><link>http://www.cyberciti.biz/faq/rhel-fedora-linux-apache-enable-webdav/#comment-39357</link> <dc:creator>Manoj</dc:creator> <pubDate>Wed, 03 Dec 2008 12:41:52 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2594#comment-39357</guid> <description>getting error while restarting my apache
[root@testbox ~]# /etc/init.d/httpd restart
Stopping httpd:                                            [FAILED]
Starting httpd: Syntax error on line 555 of /etc/httpd/conf/httpd.conf:
DAV not allowed here
[FAILED]
[root@testbox ~]#</description> <content:encoded><![CDATA[<p>getting error while restarting my apache<br
/> [root@testbox ~]# /etc/init.d/httpd restart<br
/> Stopping httpd:                                            [FAILED]<br
/> Starting httpd: Syntax error on line 555 of /etc/httpd/conf/httpd.conf:<br
/> DAV not allowed here<br
/> [FAILED]<br
/> [root@testbox ~]#</p> ]]></content:encoded> </item> </channel> </rss>
