From owner-freebsd-questions@FreeBSD.ORG Fri Aug 13 01:43:49 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5492216A4CF for ; Fri, 13 Aug 2004 01:43:49 +0000 (GMT) Received: from out012.verizon.net (out012pub.verizon.net [206.46.170.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA99E43D1D for ; Fri, 13 Aug 2004 01:43:48 +0000 (GMT) (envelope-from acurtis@ieee.org) Received: from [192.168.1.102] ([151.203.119.24]) by out012.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040813014348.NURJ22270.out012.verizon.net@[192.168.1.102]> for ; Thu, 12 Aug 2004 20:43:48 -0500 Mime-Version: 1.0 (Apple Message framework v618) Content-Transfer-Encoding: 7bit Message-Id: <359CDA42-ECCA-11D8-B4CE-000A958FBA16@ieee.org> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd-questions@freebsd.org From: Alan Curtis Date: Thu, 12 Aug 2004 21:43:43 -0400 X-Mailer: Apple Mail (2.618) X-Authentication-Info: Submitted using SMTP AUTH at out012.verizon.net from [151.203.119.24] at Thu, 12 Aug 2004 20:43:48 -0500 Subject: Getting mod_dav to work X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 01:43:49 -0000 I would like to install the mod_dav port to allow me to make webDAV connections from my OS X machine to my FreeBSD server. I am using FreeBSD 4.10-RELEASE apache 1.3.13 mod_dav-1.0.3_1 I installed everything and then followed the instructions from the mod_dav website and put the following lines in my httpd.conf file. DAVLockDB /var/db/DAVLock DAVMinTimeout 600 DAVDepthInfinity On DAV on I restarted apache. I made www the owner and group of /usr/home/alan/www/dav I can access /usr/home/alan/www/dav through a browser. But, using the Goliath dav client, I get an error message and the following log file ====================== Outgoing Request ====================== OPTIONS / HTTP/1.0 Content-Type: text/plain; charset="us-ascii" User-Agent: Goliath/1.0.1 (Macintosh-Carbon; PPC) Host: 192.168.1.100 Connection: Close ====================== Incoming Response ====================== HTTP/1.1 200 OK Date: Fri, 13 Aug 2004 01:25:03 GMT Server: Apache/1.3.31 (Unix) DAV/1.0.3 Content-Length: 0 Allow: GET, HEAD, OPTIONS, TRACE Connection: close ====================== Outgoing Request ====================== PROPFIND / HTTP/1.1 MIME-Version: 1.0 Content-Type: text/xml User-Agent: Goliath/1.0.1 (Macintosh-Carbon; PPC) Content-Length: 187 Host: 192.168.1.100 Depth: 1 ====================== Incoming Response ====================== HTTP/1.1 405 Method Not Allowed Date: Fri, 13 Aug 2004 01:25:03 GMT Server: Apache/1.3.31 (Unix) DAV/1.0.3 Allow: GET, HEAD, OPTIONS, TRACE Transfer-Encoding: chunked Content-Type: text/html; charset=iso-8859-1 405 Method Not Allowed

Method Not Allowed

The requested method PROPFIND is not allowed for the URL /index.html.


Apache/1.3.31 Server at my.ip.address Port 80
I am a FreeBSD and apache novice, so any help would be appreciated.