Click to See Complete Forum and Search --> : Cookie Calendar


bedrock_123
12-10-2002, 01:47 PM
First of all I'mm not a javascript expert, but I do try . I copied the cookie-calendar from this site to use as my web calendar for 2003. After I modified the necessary portions of the script and moved everything to the development server everything appeared to work fine. When I went to a co-worker to see what they thought about it, none of the events from the daily scheduler was showing up on my co workers calendar. Well after doing a little research I realized that the pop up event scheduler were actually cookies being created on my workstation. My question is, is there any way I can change the code so that when cookies are created, they can also be passed to a webserver. The code can be found on the link below. I would appreciate any help on this, or if it can't be done just let me know so I can stop wasting time.

http://javascript.internet.com/calendars/cookie-calendar/calendar.html

Sceiron
12-10-2002, 02:02 PM
If by "send the cookies to the web server" you mean have the events that one person enters show up on everyone's calendar, then no, that will not work with this calendar application. In order to share the events to multiple users, you will need a CGI calendar application that uses a text file or database on the server to store the events. This one is meant as a personal calendar only.

bedrock_123
12-10-2002, 02:12 PM
Thanks Sceiron,
I'll have to loook for something else to use that's similiar.