| Article: |
Serve Your iCal Calendars Using WebDAV | |
| Subject: | ARGH! It just won't work | |
| Date: | 2004-01-04 19:35:27 | |
| From: | anonymous2 | |
|
I can't seem to get it to work for some reason. As you can probably tell from the error_log extract below, i keep pulling up error 500s from my web server. Here's my error log:
|
||
Showing messages 1 through 1 of 1.
-
ARGH! It just won't work
2004-01-24 07:34:16 shoaiby [View]



The directory specified in the DAVLockDB directive must have owner and group set to "www" :
# excerpt from httpd.conf file
...
DAVLockDB /Library/WebServer/DAVLock/DAVLock
...
In Terminal, type:
sudo chown www:www /Library/WebServer/DAVLock
Also, and this was the REAL problem why I kept getting "Could not open the lock database", the directory must be writable by everyone:
So I did this to make it work in Terminal:
sudo chmod 777 /Library/WebServer/DAVLock
And then it worked!. Hope this helps.