Hi Lenny,

It's been driving me crazy but I finally fixed it! The only error I could see in the logs was an error with memcached not being able to log on as root. It looks like the memcache service gets called in twistedcaldav/cluster.py so I just added a line in on line 393 to force the service to start as root:

if config.Memcached["ServerEnabled"]:
   log.msg("Adding memcached service")

   memcachedArgv = [
       config.Memcached["memcached"],
       "-p", str(config.Memcached["Port"]),
       "-l", config.Memcached["BindAddress"],
       "-u", "root",
       ]

And bam, calendars galore for all.

Chris


Martin Leonard wrote:
Hi Chris,

Chris Brown-20 wrote:
The only problem is that after setting up some test users in accounts.xml I can't browse to their calendar folders through the browser or connect to the sever through either Thunderbird or Chandler. I can browse and logon to http://server:8008 and browse through /calenders and /principals fine, I can access the locations and resources calendars e.g./calendars/locations/location01/calendar/ but when I try to look at any calendar directories for my created users or groups i.e. /calendars/user/<UID>/ the server times out with nothing. What am I missing?!

 I have a similar issue. I think it might be a new issue in trunk as I did
have it working a month or so ago. I found when connecting to a user
calendar collection in thunderbird/lightning I was getting an error. I used
the url: http://192.168.1.106:8008/calendars/users/mleonard/calendar .In
Thunderbird under Tools there is an "Error Console" option. In here I was
getting the following error:

Warning: There has been an error reading data for calendar: Mleonard -
Caldav.  However, this error is believed to be minor, so the program will
attempt to continue. Error code: DAV_NOT_DAV. Description: The resource at
http://192.168.1.106:8008/calendars/users/mleonard/calendar is either not a
DAV collection or not available

I did not get this error when I downloaded the source on a different server
a month or so earlier. By the way I can access the calendar fine on a Mac
using iCal and on Windows via Firefox.
I also still have issues accessing the calendar from Outlook via open
connector.

I am continuing to look into these issues and will post any updates if I
find any solutions.

Lenny




--
*Chris Brown*
IT Developer
Computer Bookshops

*t:* +44 (0) 121 778 3333      *e:* [EMAIL PROTECTED]
*f:* +44 (0) 121 606 0469      *w:* www.computerbookshops.com

205 Formans Road, Sparkhill, Birmingham, B11 3AX, United Kingdom
Computer Bookshops and C.B.Learning are trading names of Computer Bookshops Ltd.
Company No. 1386108 Registered in England & Wales

This e-mail and the information contained is confidential and is intended solely for the person to whom it is addressed. _If you are not the intended recipient or have received it in error_ we would appreciate a prompt notice that it has been wrongly despatched and will reimburse any reasonable cost involved in notifying us. We thank you for your help in this regard. We would also advise that you should not use, disclose or copy this information in any medium, as if you do, you may be breaking the law and thereby incurring liability. We do not accept any liability to any third party acting or failing to act on any information contained in this e-mail

*Please* consider the environment before printing this e-mail.
_______________________________________________
calendarserver-users mailing list
calendarserver-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/calendarserver-users

Reply via email to