vote up 1 vote down star

Hello,

I'm setting up a feature for "exporting as ics file" (iCal) our weekly school agenda. The download prompt works but when opening it in iCal (Mac OS X), iCal tells me the calendar is invalid. I opened the file in a text editor and it looks ok to me.

I suspect my download.php script is wrong or setting the wrong mimetype.

I tried text and text/calendar. No luck.

So my question is this: what's the correct mimetype for ics files?

flag

Please detail the header you use in PHP, to download the file. – andres descalzo Aug 21 at 12:42

2 Answers

vote up 2 vote down check

iCalendar data has the MIME content type text/calendar.

Wikipedia

If you're saving it then loading it, I doubt that's the problem though - check your data, charset, line endings...

link|flag
ok thanks. I'll create a new question more related to the code if i can't manage it. – pixeline Aug 21 at 12:43
vote up 1 vote down
text/calendar

From the RFC 2447 iCalendar Message-Based Interoperability Protocol:

2.1 MIME Media Type

A MIME entity containing content information formatted according to
this document will be referenced as a "text/calendar" content type. It is assumed that this content type will be transported through a MIME electronic mail transport.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.