<?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: ISP-In-A-Box: Remotely Managing Mac Web Sites Using WebDAV	</title>
	<atom:link href="https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/feed/" rel="self" type="application/rss+xml" />
	<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/</link>
	<description>Ward Mundy&#039;s Technobabblelog</description>
	<lastBuildDate>Sat, 23 Apr 2016 11:57:59 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Michael		</title>
		<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/comment-page-1/#comment-2279</link>

		<dc:creator><![CDATA[Michael]]></dc:creator>
		<pubDate>Mon, 18 Dec 2006 01:04:30 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=56#comment-2279</guid>

					<description><![CDATA[I have setup WebDAV following your instructions without a hitch. I do, however, run into a problem once it is running. I can mount the WebDAV folder, write to it, and read from it. But I can&#039;t modify anything on it. I would like to edit files on the DAV folder instead of copying it to my machine modifying it, and uploading back to the DAV. Any suggestions?]]></description>
			<content:encoded><![CDATA[<p>I have setup WebDAV following your instructions without a hitch. I do, however, run into a problem once it is running. I can mount the WebDAV folder, write to it, and read from it. But I can&#8217;t modify anything on it. I would like to edit files on the DAV folder instead of copying it to my machine modifying it, and uploading back to the DAV. Any suggestions?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Stephen Downs		</title>
		<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/comment-page-1/#comment-2068</link>

		<dc:creator><![CDATA[Stephen Downs]]></dc:creator>
		<pubDate>Tue, 24 Oct 2006 00:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=56#comment-2068</guid>

					<description><![CDATA[I&#039;ve upgraded my development box to Apache 2, and thanks to hints in this tutorial I have WebDAV up and running, but with the following problem.

I&#039;m doing some development in Flash wherein Flash talks to the webserver through various means, POST &amp; AMFPHP. POST from Flash is failing whenever I have WebDAV turned on. Is there a simple way to exclude the WebDAV authorization from kicking in when the user agent is &quot;Macromedia Flash Player 8&quot; (or anything Flash)?]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve upgraded my development box to Apache 2, and thanks to hints in this tutorial I have WebDAV up and running, but with the following problem.</p>
<p>I&#8217;m doing some development in Flash wherein Flash talks to the webserver through various means, POST &#038; AMFPHP. POST from Flash is failing whenever I have WebDAV turned on. Is there a simple way to exclude the WebDAV authorization from kicking in when the user agent is "Macromedia Flash Player 8&#8243; (or anything Flash)?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: John Korchok		</title>
		<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/comment-page-1/#comment-1829</link>

		<dc:creator><![CDATA[John Korchok]]></dc:creator>
		<pubDate>Wed, 16 Aug 2006 15:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=56#comment-1829</guid>

					<description><![CDATA[To add multiple folders with separate passwords, add the following to your httpd.conf file (for Apache 1) or httpd-dav.conf file (for Apache 2)

DavLockDB /Library/WebServer/davlocks/DavLock

#For each user, add a section as follows. There are two user names. myid is your id and appears in each section for each user, so you have access to all folders. The second id appears only in this section, so the user only has access to it.

&lt;directory /Library/WebServer/Documents/dav/customer00&gt;
    Dav On
    AllowOverride None
    Options None
    AuthType Digest
    AuthName FileShare
    AuthUserFile /Library/WebServer/Passwords/.htpwdigest
    &lt;limitexcept GET HEAD OPTIONS&gt;
        require user myid ctmr00
    &lt;/limitexcept&gt;
&lt;/directory&gt;

#Then end with a section like this, to allow only you access to the parent folder of all the folders. This must follow all the other sections or it will not work.

&lt;directory /Library/WebServer/Documents/dav&gt;
    Dav On
    AllowOverride None
    Options None
    AuthType Digest
    AuthName FileShare
    AuthUserFile /Library/WebServer/Passwords/.htpwdigest
    &lt;limitexcept GET HEAD OPTIONS&gt;
        require user myid
    &lt;/limitexcept&gt;
&lt;/directory&gt;

#We use digest authentication for its greater security]]></description>
			<content:encoded><![CDATA[<p>To add multiple folders with separate passwords, add the following to your httpd.conf file (for Apache 1) or httpd-dav.conf file (for Apache 2)</p>
<p>DavLockDB /Library/WebServer/davlocks/DavLock</p>
<p>#For each user, add a section as follows. There are two user names. myid is your id and appears in each section for each user, so you have access to all folders. The second id appears only in this section, so the user only has access to it.</p>
<p><directory /Library/WebServer/Documents/dav/customer00><br />
    Dav On<br />
    AllowOverride None<br />
    Options None<br />
    AuthType Digest<br />
    AuthName FileShare<br />
    AuthUserFile /Library/WebServer/Passwords/.htpwdigest
    <limitexcept GET HEAD OPTIONS>
        require user myid ctmr00
    </limitexcept>
</directory></p>
<p>#Then end with a section like this, to allow only you access to the parent folder of all the folders. This must follow all the other sections or it will not work.</p>
<p><directory /Library/WebServer/Documents/dav><br />
    Dav On<br />
    AllowOverride None<br />
    Options None<br />
    AuthType Digest<br />
    AuthName FileShare<br />
    AuthUserFile /Library/WebServer/Passwords/.htpwdigest
    <limitexcept GET HEAD OPTIONS>
        require user myid
    </limitexcept>
</directory></p>
<p>#We use digest authentication for its greater security</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: chriscj		</title>
		<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/comment-page-1/#comment-1459</link>

		<dc:creator><![CDATA[chriscj]]></dc:creator>
		<pubDate>Tue, 02 May 2006 11:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=56#comment-1459</guid>

					<description><![CDATA[Hi there!
It appears that you have broken links - I can&#039;t get http://mundy.org/blog/wp-content/webdav1.txt to work, and cannot get any info from a whois on mundy.org. Do oyu perchance have this code elsewhere?

Thanks

&lt;i&gt;[WM: My apologies. We switched providers several months ago, and all the content now is on nerdvittles.com rather than mundy.org/blog. I&#039;ve fixed both links in the article. Thanks.]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>Hi there!<br />
It appears that you have broken links &#8211; I can&#8217;t get <a href="http://mundy.org/blog/wp-content/webdav1.txt" rel="nofollow ugc">http://mundy.org/blog/wp-content/webdav1.txt</a> to work, and cannot get any info from a whois on mundy.org. Do oyu perchance have this code elsewhere?</p>
<p>Thanks</p>
<p><i>[WM: My apologies. We switched providers several months ago, and all the content now is on nerdvittles.com rather than mundy.org/blog. I&#8217;ve fixed both links in the article. Thanks.]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: davidm		</title>
		<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/comment-page-1/#comment-1016</link>

		<dc:creator><![CDATA[davidm]]></dc:creator>
		<pubDate>Wed, 15 Feb 2006 14:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=56#comment-1016</guid>

					<description><![CDATA[Is it possible to set up multiple webdav enabled folders, each with unique permissions, /Library/WebServer/webdav/...webdav1, webdav2,...etc.  If so can you give a proceedure for accomplishing this?
Also does Webmin have a webdav module?]]></description>
			<content:encoded><![CDATA[<p>Is it possible to set up multiple webdav enabled folders, each with unique permissions, /Library/WebServer/webdav/&#8230;webdav1, webdav2,&#8230;etc.  If so can you give a proceedure for accomplishing this?<br />
Also does Webmin have a webdav module?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nathan		</title>
		<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/comment-page-1/#comment-219</link>

		<dc:creator><![CDATA[Nathan]]></dc:creator>
		<pubDate>Fri, 10 Jun 2005 15:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=56#comment-219</guid>

					<description><![CDATA[Nevermind that last comment. I missed a step :-) And I really thought I took it nice and slow! Regardless, I do wonder if the second /Documents will ever be different (I realized it should probably be the directory you are attempting to make WebDAVable - I&#039;m pretty bright, huh?)under any circumstances. I do not know, I am just trying to throw it out there.

Thanks for a great tutorial!]]></description>
			<content:encoded><![CDATA[<p>Nevermind that last comment. I missed a step 🙂 And I really thought I took it nice and slow! Regardless, I do wonder if the second /Documents will ever be different (I realized it should probably be the directory you are attempting to make WebDAVable &#8211; I&#8217;m pretty bright, huh?)under any circumstances. I do not know, I am just trying to throw it out there.</p>
<p>Thanks for a great tutorial!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Joe Auricchio		</title>
		<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/comment-page-1/#comment-210</link>

		<dc:creator><![CDATA[Joe Auricchio]]></dc:creator>
		<pubDate>Fri, 27 May 2005 20:57:54 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=56#comment-210</guid>

					<description><![CDATA[Perhaps code snippet 1 should include Tiger WebDAVFS/1.13 support: &lt;a href=&quot;http://www.macosxhints.com/article.php?story=20050506202838310&quot;&gt;BrowserMatch &quot;^WebDAVFS/1.[0123]&quot; redirect-carefully&lt;/a&gt;.

&lt;i&gt;[WM: Good suggestion. Thanks. I&#039;ve added it; however, all of our systems (Linux of several varieties, Windows XP, and Macs running Tiger and Panther) all seem to do fine without it).]&lt;/i&gt; ]]></description>
			<content:encoded><![CDATA[<p>Perhaps code snippet 1 should include Tiger WebDAVFS/1.13 support: <a href="http://www.macosxhints.com/article.php?story=20050506202838310">BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully</a>.</p>
<p><i>[WM: Good suggestion. Thanks. I&#8217;ve added it; however, all of our systems (Linux of several varieties, Windows XP, and Macs running Tiger and Panther) all seem to do fine without it).]</i> </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: zahadum		</title>
		<link>https://nerdvittles.com/isp-in-a-box-remotely-managing-mac-web-sites-using-webdav/comment-page-1/#comment-209</link>

		<dc:creator><![CDATA[zahadum]]></dc:creator>
		<pubDate>Fri, 27 May 2005 20:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=56#comment-209</guid>

					<description><![CDATA[more coverage of practical, how-to webdav stuff, please!

readers can also check out these for more background:

news:       http://www.webdav.org/
technology: http://greenbytes.de/tech/webdav/
tutorials:  http://www.ht04.org/ht04tutorialDAV2.php]]></description>
			<content:encoded><![CDATA[<p>more coverage of practical, how-to webdav stuff, please!</p>
<p>readers can also check out these for more background:</p>
<p>news:       <a href="http://www.webdav.org/" rel="nofollow ugc">http://www.webdav.org/</a><br />
technology: <a href="http://greenbytes.de/tech/webdav/" rel="nofollow ugc">http://greenbytes.de/tech/webdav/</a><br />
tutorials:  <a href="http://www.ht04.org/ht04tutorialDAV2.php" rel="nofollow ugc">http://www.ht04.org/ht04tutorialDAV2.php</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
