I'm keeping schedules in a MySQL database, and my users are beginning to wonder if it is possible to export their calendar to outlook/palm/etc
What I've begun to try and implement is the vCalendar format which seems to be the most wide-spread calendar standard. However, the files I'm generating are causing Outlook to return the following error (Even with only one VEVENT)
"This error can appear if you have attempted to save a recurring Lunar
appointment in iCalendar format.
To avoid this error, set the appointment option to Gregorian instead of
Lunar."
here's a snippet of what the file I've generated looks like :
BEGIN:VCALENDAR
PROID:-//Dia Next Level//Schednet 1.0 MIMEDIR//EN
CALSCALE:GREGORIAN
VERSION:1.0
BEGIN:VEVENT
DTSTART:20040826T190000-050000Z
DTEND:20040826T200000-050000Z
SUMMARY:Team Practice
DESCRIPTION;ENCODING=QUOTED-PRINTABLE:Team Practice=0D=0A=
Aurora Tigers Minor Atom AE =0D=0A=
aLC aurora, ontario=0D=0A=
END:VEVENT
END:VCALENDAR