![]() |
iCalendar feed generation - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: iCalendar feed generation (/showthread.php?tid=6967) |
iCalendar feed generation - El Forum - 03-18-2008 [eluser]acesfull9[/eluser] So I have been working for hours on how to create an iCalendar feed. Here is the dilemma, I can subscribe to remote iCal files just fine, I can keep an up to date iCalendar file on the server that anyone can subscribe to and things work fine, the only thing is I would have to keep that up to date every time an event was changed which could be a huge hassle. So I figured it would be much easier to just compile one large iCalendar file on the fly. So I have that accomplished, but when I try to import the feed I get a parse error in outlook and sunbird. Which is weird because I can save that file to the server and subscribe to it just fine as described above. Here is my view, all my controller is doing is loading it. Code: <? Here is the error I get in sunbird: [Exception... "Component returned failure code: 0x804a0100 [calIICSService.parseICS]" nsresult: "0x804a0100 (<unknown>)" location: "JS frame :: file:///C:/Program Files/Mozilla Sunbird/js/calIcsParser.js :: ip_parseString :: line 60" data: no] There is no error description in outlook. I think the error is somewhere in the header() but I am really not sure. Any help would be greatly appreciated. iCalendar feed generation - El Forum - 03-19-2008 [eluser]GSV Sleeper Service[/eluser] check these Code: DTSTART;VALUE=DATE:20080304 those time values don't look quite right |