Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Developer Center > WebDAV on OSX?

WebDAV on OSX?
Thread Tools
Mac Enthusiast
Join Date: Jan 1999
Location: Marietta, GA, USA
Status: Offline
Reply With Quote
Nov 12, 2000, 09:26 AM
 
Has anyone set up Apache as a WebDAV server? And can you spare a hint as to how?

Thanks,

-Scott
Scott Genevish
scott AT genevish DOT org
     
Mac Enthusiast
Join Date: Oct 2000
Location: Toronto
Status: Offline
Reply With Quote
Nov 12, 2000, 02:47 PM
 
Go to osx.macnn.com (pretty much where you are right now). On the left hand side (above where the forums are listed), there is a WebDAV article. Go nuts
     
Mac Enthusiast
Join Date: Jan 1999
Location: Marietta, GA, USA
Status: Offline
Reply With Quote
Nov 14, 2000, 10:09 AM
 
Hehe, am I blind or what. Anyway, I tried the steps outlined, but am still having the same problem as when I tried setting it up on my own.

Apache doesn't start. The console.log shows:

dyld: /usr/sbin/apache Undefined symbols:
_ap_ctx_get
/usr/sbin/apachectl start: httpd could not be started
Nov 14 11:02:46 www lookupd[1214]: Caught SIGHUP - restarting

Any clues? I have replaced Apache with one that includes MySQL and PHP4, using these packages. Would that have caused the problem?

-Scott
Scott Genevish
scott AT genevish DOT org
     
Mac Enthusiast
Join Date: Oct 2000
Location: Toronto
Status: Offline
Reply With Quote
Nov 14, 2000, 10:49 AM
 
Sorry Scott, I have no idea...
     
smdesai
Guest
Status:
Reply With Quote
Nov 14, 2000, 11:39 PM
 
Try the following:

Edit /Library/WebServer/Configuration/apache.conf

Find and uncomment the following lines in the file:
LoadModule dav_module /System/Library/Apache/Modules/libdav.so
AddModule mod_dav.c

Add the following line:

DAV On

inside the <Directory> directive. e.g. just after the line:

<Directory "/Library/WebServer/Documents">

DAV On

After the closed directory directive, add the following:

DAVLockDB /usr/local/apache/var/DAVLock

e.g.
</Directory>

DAVLockDB /usr/local/apache/var/DAVLock

Create the path to the DAVLock directory and make sure it's writeable by everyone:

chmod 777 /usr/local/apache/var/DAVLock

Restart Apache and use any DAV client to access.
     
Gee4orce
Guest
Status:
Reply With Quote
Nov 15, 2000, 03:59 AM
 
I also had problems getting DAV to work with a version that has PHP installed. Somehow I've now hosed my apache.conf file, so I've lost PHP configuration.

I think I'll tray and get DAV working with these instructions again, and then add back in PHP.
     
Mac Enthusiast
Join Date: Oct 2000
Location: Toronto
Status: Offline
Reply With Quote
Nov 15, 2000, 09:42 AM
 
Originally posted by smdesai:
Try the following:

Edit /Library/WebServer/Configuration/apache.conf

Find and uncomment the following lines in the file:
LoadModule dav_module /System/Library/Apache/Modules/libdav.so
AddModule mod_dav.c

Add the following line:

DAV On

inside the <Directory> directive. e.g. just after the line:

<Directory "/Library/WebServer/Documents">

DAV On

After the closed directory directive, add the following:

DAVLockDB /usr/local/apache/var/DAVLock

e.g.
</Directory>

DAVLockDB /usr/local/apache/var/DAVLock

Create the path to the DAVLock directory and make sure it's writeable by everyone:

chmod 777 /usr/local/apache/var/DAVLock

Restart Apache and use any DAV client to access.

These are the EXACT same instructions given on MacNN, no change. For those of you who followed those instructions before, don't bother with this.
     
Forum Regular
Join Date: Nov 2000
Status: Offline
Reply With Quote
Nov 15, 2000, 09:52 AM
 
let us know Gee4orce.

i too installed the php apache package and now want to add webdav.
     
Gee4orce
Guest
Status:
Reply With Quote
Nov 16, 2000, 04:40 AM
 
Hmmm. Re-installed PHP, and it works fine, but it looks like WebDAV has now died

I think this could be because the PHP I installed is actually a pre-compiled build of Apache with PHP support, and this supplants the Apple supplied build. Maybe WebDAV doesn't like this build ???

I'll do some more testing soon.

When DAV *was* working, I managed to connect from Adobe GoLive in Classic, but wasn't able to synchronise as DAV needs some extra configuration.
     
Forum Regular
Join Date: Nov 2000
Status: Offline
Reply With Quote
Nov 16, 2000, 10:13 AM
 
are you connecting via ssl? this would solve the ftp isn't seure problem.
     
Mac Enthusiast
Join Date: Oct 2000
Location: Toronto
Status: Offline
Reply With Quote
Nov 17, 2000, 02:04 PM
 
Hi iloveOSX, how do you configure SSL on X?
     
Forum Regular
Join Date: Nov 2000
Status: Offline
Reply With Quote
Nov 17, 2000, 03:17 PM
 
it has something to do with uncommenting out the ssl apache mod (i think) i have not tried yet as i have heard there is a bug with the apache installer that mat vaughn made for php/mysql......
     
Mac Enthusiast
Join Date: Oct 2000
Location: Toronto
Status: Offline
Reply With Quote
Nov 17, 2000, 03:47 PM
 
How would I test it after I uncomment it?

[This message has been edited by anothermacguy (edited 11-18-2000).]
     
Junior Member
Join Date: Nov 2000
Status: Offline
Reply With Quote
Nov 19, 2000, 02:43 PM
 
dyld: /usr/sbin/apache Undefined symbols:
_ap_ctx_get
/usr/sbin/apachectl start: httpd could not be started

This is a known bug to Apple in dyld & libtool (this also keeps us from being able to use PHP as a DSO module due to 'libtool') once you recompile Apache for PHP. You will also have to recompile WebDAV to get DAV support after you have a new Apache.

Get mod_dav from: http://www.opensource.apple.com/proj...1.0.1-6.tar.gz

Untar and then follow the README & INSTALL instructions. This works, I have Apache, PHP 4, MySQL and WebDAV all working fine on my Darwin 1.2.1 box. (This applies to Mac OX X Public Beta also.)

Hope this helps. ALso from what I can tell the mod_ssl is fine, and doesn't need recompiled.

------------------
--
Timothy Hatcher
Programmer/Designer @
MainNet Incorporated
__________________________________________

www.main-net.com
Timothy Hatcher / xenon
.:[ massinova.com ]:.
     
Mac Enthusiast
Join Date: Jan 1999
Location: Marietta, GA, USA
Status: Offline
Reply With Quote
Nov 28, 2000, 04:34 PM
 
Xenon,

Can you provide more info? I'm not real familiar with the compiling options. In trying to configure with Apache I'm getting:

% ./configure --with-apache=/System/Library/Apache
loading cache ./config.cache
checking for gcc... no
checking for cc... cc
checking whether the C compiler (cc ) works... no
configure: error: installation or configuration problem: C compiler cannot create executables.

I get about the same mesage if I try to configure with apxs.
Scott Genevish
scott AT genevish DOT org
     
Junior Member
Join Date: Nov 2000
Status: Offline
Reply With Quote
Nov 28, 2000, 09:05 PM
 
The tools must not have installed right.. or Darwin isn't right (OS X or Darwin).. try reinstalling the OS X Dev tools or Darwin.. then it will work how u tried..
Timothy Hatcher / xenon
.:[ massinova.com ]:.
     
Mac Enthusiast
Join Date: Oct 2000
Location: Toronto
Status: Offline
Reply With Quote
Dec 10, 2000, 01:21 PM
 
Hi Xenon, I'm having another problem. This is what happens to me:

[localhost esktop/apache_mod_dav-6/mod_dav] guruguha% ./configure --with-apache=/System/Library/Apache
creating cache ./config.cache
checking for gcc... no
checking for cc... cc
checking whether the C compiler (cc ) works... yes
checking whether the C compiler (cc ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether cc accepts -g... yes
checking for ranlib... ranlib
checking how to run the C preprocessor... cc -E -traditional-cpp
checking for ANSI C header files... yes
checking for static Apache module support... no - Unable to locate /System/Library/Apache/src/include/httpd.h
checking for Apache module support via DSO through APXS... no
configure: error: You need to point --with-apache at the base Apache source code directory

---------

What am I doing wrong? What should the initial configure statement be for OSX Public Beta?

Thanks......anothermacguy
     
Junior Member
Join Date: Nov 2000
Status: Offline
Reply With Quote
Dec 18, 2000, 08:30 AM
 
./configure --with-apache=/System/Library/Apache

This is the line in question. The "--with-apache" flag asks for the source code for Apache. When I installed WebDAV I used apxs.

I think the flag to do this is: --with-apxs

For just use: ./configure --with-apxs

And that should work. I don' have the WebDAV source siting around anymore, but you might want to read the INTALL and README files that came with WebDAV mod. They help.

------------------
Timothy Hatcher
Programmer/Designer @ MainNet Incorporated
__________________________________________

http://www.main-net.com
Timothy Hatcher / xenon
.:[ massinova.com ]:.
     
Mac Enthusiast
Join Date: Oct 2000
Location: Toronto
Status: Offline
Reply With Quote
Dec 18, 2000, 02:16 PM
 
Thanks xenon. The configure went fine with apxs. After that I ran the make, and make install. Unfortunatly, I still get the undefined symbols error when I try to start apache. This is what I got when I ran the make, and make install (sorry for the length of this):

[localhost esktop/apache_mod_dav-6/mod_dav] root# make
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_props.c -o dav_props.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from mod_dav.h:26,
from dav_props.c:141:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_util.c -o dav_util.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from mod_dav.h:26,
from dav_util.c:20:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_xmlparse.c -o dav_xmlparse.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from dav_xmlparse.c:23:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE mod_dav.c -o mod_dav.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from mod_dav.c:42:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_lock.c -o dav_lock.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from mod_dav.h:26,
from dav_lock.c:22:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_opaquelock.c -o dav_opaquelock.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from dav_opaquelock.c:46:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_dyn.c -o dav_dyn.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from mod_dav.h:26,
from dav_dyn.c:20:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_fs_dbm.c -o dav_fs_dbm.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from mod_dav.h:26,
from dav_fs_dbm.c:37:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_fs_lock.c -o dav_fs_lock.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from dav_fs_lock.c:24:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE dav_fs_repos.c -o dav_fs_repos.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/httpd.h:71,
from dav_fs_repos.c:23:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE sdbm/sdbm.c -o sdbm/sdbm.o
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE sdbm/sdbm_hash.c -o sdbm/sdbm_hash.o
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE sdbm/sdbm_lock.c -o sdbm/sdbm_lock.o
In file included from /System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1139,
from sdbm/sdbm_lock.c:7:
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/hsregex.h:22: warning: `ap_private_extern' redefined
/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/ap_config.h:1033: warning: this is the location of the previous definition
cc -c -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers -I/System/Library/Frameworks/Apache.framework/Versions/1.3/Headers/xml -g -O2 -DDARWIN -DTARGET="apache" -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -O3 -pipe -traditional-cpp -DHARD_SERVER_LIMIT=1024 -DEAPI -DSHARED_MODULE sdbm/sdbm_pair.c -o sdbm/sdbm_pair.o
apxs -c -o libdav.so dav_props.o dav_util.o dav_xmlparse.o mod_dav.o dav_lock.o dav_opaquelock.o dav_dyn.o dav_fs_dbm.o dav_fs_lock.o dav_fs_repos.o sdbm/sdbm.o sdbm/sdbm_hash.o sdbm/sdbm_lock.o sdbm/sdbm_pair.o
cc -bundle -undefined suppress -o libdav.so dav_props.o dav_util.o dav_xmlparse.o mod_dav.o dav_lock.o dav_opaquelock.o dav_dyn.o dav_fs_dbm.o dav_fs_lock.o dav_fs_repos.o sdbm/sdbm.o sdbm/sdbm_hash.o sdbm/sdbm_lock.o sdbm/sdbm_pair.o
[localhost esktop/apache_mod_dav-6/mod_dav] root# make install
mkdir -p `apxs -q LIBEXECDIR` && apxs -i -a -n dav libdav.so
cp libdav.so /System/Library/Apache/Modules/libdav.so
chmod 755 /System/Library/Apache/Modules/libdav.so
[activating module `dav' in /Library/WebServer/Configuration/apache.conf]

I think my apache.conf is in order. I hope you have an idea as to what I did wrong. Thanks again.

[This message has been edited by anothermacguy (edited 12-18-2000).]
     
Junior Member
Join Date: Nov 2000
Status: Offline
Reply With Quote
Dec 18, 2000, 09:49 PM
 
In the conf file make sure all mod referances to mod_ssl are commented out.

Like this:
...
#LoadModule ssl_module /System/Library/Apache/Modules/libssl.so
LoadModule dav_module /System/Library/Apache/Modules/libdav.so
...
#AddModule mod_ssl.c
AddModule mod_dav.c
...
Timothy Hatcher / xenon
.:[ massinova.com ]:.
     
Mac Enthusiast
Join Date: Oct 2000
Location: Toronto
Status: Offline
Reply With Quote
Dec 19, 2000, 01:36 PM
 
Thanks for the reply xenon. The ssl modules are commented out, like so:


------------------
#LoadModule vhost_alias_module /System/Library/Apache/Modules/mod_vhost_alias.so
#LoadModule env_module /System/Library/Apache/Modules/mod_env.so
LoadModule config_log_module /System/Library/Apache/Modules/mod_log_config.so
#LoadModule mime_magic_module /System/Library/Apache/Modules/mod_mime_magic.so
LoadModule mime_module /System/Library/Apache/Modules/mod_mime.so
LoadModule negotiation_module /System/Library/Apache/Modules/mod_negotiation.so
#LoadModule status_module /System/Library/Apache/Modules/mod_status.so
#LoadModule info_module /System/Library/Apache/Modules/mod_info.so
LoadModule includes_module /System/Library/Apache/Modules/mod_include.so
LoadModule autoindex_module /System/Library/Apache/Modules/mod_autoindex.so
LoadModule dir_module /System/Library/Apache/Modules/mod_dir.so
LoadModule cgi_module /System/Library/Apache/Modules/mod_cgi.so
LoadModule asis_module /System/Library/Apache/Modules/mod_asis.so
LoadModule imap_module /System/Library/Apache/Modules/mod_imap.so
LoadModule action_module /System/Library/Apache/Modules/mod_actions.so
#LoadModule speling_module /System/Library/Apache/Modules/mod_speling.so
LoadModule userdir_module /System/Library/Apache/Modules/mod_userdir.so
LoadModule alias_module /System/Library/Apache/Modules/mod_alias.so
LoadModule rewrite_module /System/Library/Apache/Modules/mod_rewrite.so
LoadModule access_module /System/Library/Apache/Modules/mod_access.so
LoadModule auth_module /System/Library/Apache/Modules/mod_auth.so
#LoadModule anon_auth_module /System/Library/Apache/Modules/mod_auth_anon.so
#LoadModule dbm_auth_module /System/Library/Apache/Modules/mod_auth_dbm.so
#LoadModule digest_module /System/Library/Apache/Modules/mod_digest.so
#LoadModule proxy_module /System/Library/Apache/Modules/libproxy.so
#LoadModule cern_meta_module /System/Library/Apache/Modules/mod_cern_meta.so
#LoadModule expires_module /System/Library/Apache/Modules/mod_expires.so
#LoadModule headers_module /System/Library/Apache/Modules/mod_headers.so
#LoadModule usertrack_module /System/Library/Apache/Modules/mod_usertrack.so
#LoadModule unique_id_module /System/Library/Apache/Modules/mod_unique_id.so
LoadModule setenvif_module /System/Library/Apache/Modules/mod_setenvif.so
LoadModule dav_module /System/Library/Apache/Modules/libdav.so
#LoadModule ssl_module /System/Library/Apache/Modules/libssl.so

# Reconstruction of the complete module list from all available modules
# (static and shared ones) to achieve correct module execution order.
# [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
ClearModuleList
#AddModule mod_vhost_alias.c
#AddModule mod_env.c
AddModule mod_log_config.c
#AddModule mod_mime_magic.c
AddModule mod_mime.c
AddModule mod_negotiation.c
#AddModule mod_status.c
#AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
#AddModule mod_speling.c
AddModule mod_userdir.c
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
#AddModule mod_auth_anon.c
#AddModule mod_auth_dbm.c
#AddModule mod_digest.c
#AddModule mod_proxy.c
#AddModule mod_cern_meta.c
#AddModule mod_expires.c
#AddModule mod_headers.c
#AddModule mod_usertrack.c
#AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
AddModule mod_dav.c
#AddModule mod_ssl.c
#Have to add this line in order for the mod_php4 we compiled in to be recognized
AddModule mod_php4.c

--------------

Here is what it says around my Directory tags:

------------

DAVLockDB /Library/WebServer/davlocks/DAVLockDB
<Directory "/Library/WebServer/Documents">
DAV On

------------

This is what I have above the virtual hosts area (which I do use):

------------

DAVLockDB /Library/WebServer/davlocks
<Directory "/Library/WebServer/my_sites">
DAV On
Options Indexes FollowSymLinks MultiViews +Includes
AllowOverride All
Order allow,deny
Allow from all
</Directory>

-------------


Thanks again for all your help.
     
   
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 12:43 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2