Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Any Google search on PHP ical just brings up phpicalendar and how to parse or read IN ical files. I just want to write a PHP file that pulls events from my database and writes them out in ical format.

My problem is I can't find anywhere that will answer two questions:

  1. What is the exact ical format, including headers, file format, footers, etc.? In other words, what does the file have to have, exactly, in order to be properly read in by Google Calendar, etc.?
  2. If I build this file using a .php extension, how do I publish it as ical? Do I have to write to a new .ics file? Or will Google Calendar etc. read a .php file as ical so long as the contents are in the correct format? (Much like a style.css.php file will be read as a CSS file if the contents are actually CSS, etc.)

Any help you all can give or point me to will be greatly appreciated!!!

share|improve this question

6 Answers

up vote 48 down vote accepted

This should be very simple if Google Calendar does not require the *.ics-extension (which will require some URL rewriting in the server).

$ical = "BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
BEGIN:VEVENT
UID:" . md5(uniqid(mt_rand(), true)) . "@yourhost.test
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:19970714T170000Z
DTEND:19970715T035959Z
SUMMARY:Bastille Day Party
END:VEVENT
END:VCALENDAR";

//set correct content-type-header
header('Content-type: text/calendar; charset=utf-8');
header('Content-Disposition: inline; filename=calendar.ics');
echo $ical;
exit;

That's essentially all you need to make a client think that you're serving a iCalendar file, even though there might be some issues regarding caching, text encoding and so on. But you can start experimenting with this simple code.

share|improve this answer
Thanks. I think those headers is what I was missing. I assume there are a few final steps in making this Google Calendar ready, as when I try to feed this file to Google Calendar via URL, it says "Importing calendar from url..." but hangs on that forever. Maybe that's a different question to post? – rhodesjason Sep 23 '09 at 16:52
Have you tried to access the script from your browser? Does it prompt you to download "caneldar.ics"? Can you import the file into iCal or Outlook for example? – Stefan Gehrig Sep 23 '09 at 16:59
Yes it works fine there, and Entourage loads it up fine as well. I just need the ability to create a file that Google Calendar (GC) will ping over and over to refresh, so that it stays up to date with a calendar of events in my database. Right now, GC won't accept it. – rhodesjason Sep 23 '09 at 17:06
1  
Exactly. I updated the example above - and I also added a DTSTAMP property which will tell a client when the events has been updated. – Stefan Gehrig Sep 24 '09 at 7:44
1  
Okay Gehrig, you're a genius. That worked. Thanks. (So far as I can tell Google Calendar is updating almost immediately, too.) – rhodesjason Sep 24 '09 at 18:40
show 4 more comments

Small note, related to the code of Stefan. The following line:

UID:" . md5(uniqid(mt_rand(), true)); . "@yourhost.test

Should be changed with:

UID:" . md5(uniqid(mt_rand(), true)) . "@yourhost.test

To avoid a PHP syntax error.

share|improve this answer

The example by Stefan Gehrig (Sep 23 '09 at 6:59) is very helpful. However, double quotation marks are missing around the file name: It should read

header('Content-Disposition: inline; filename="calendar.ics"');

otherwise there may occur problems (depending on the server configuration).

share|improve this answer
  1. Exact ical format: http://www.ietf.org/rfc/rfc2445.txt
  2. According to the spec, it has to end in .ics

Edit: actually I'm not sure - line 6186 gives an example in .ics naming format, but it also states you can use url parameters. I don't think it matters, so long as the MIME type is correct.

Edit: Example from wikipedia: http://en.wikipedia.org/wiki/ICalendar

BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
BEGIN:VEVENT
DTSTART:19970714T170000Z
DTEND:19970715T035959Z
SUMMARY:Bastille Day Party
END:VEVENT
END:VCALENDAR

MIME type is configured on the server.

share|improve this answer
I've tried to read that spec many times but I can't make heads or tails of it as far as what the ical file will look like. Can you at least point me to some lines where it begins to actually talk about what the .ics file should contain as far as header, where to put the MIME type, etc? – rhodesjason Sep 23 '09 at 1:26
Sure, see above. – lod3n Sep 23 '09 at 3:54

http://www.kanzaki.com/docs/ical/ has a slightly more readable of the older spec - helps as a starting point - many things are still the same.

Also on my site, I have 1) some lists of useful resources (see sidebar bottom right) on Ical Spec RFC 5545 and on ical Testing Resources

2) some notes recorded on my journey working with .ics over the last few years. http://icalevents.com/category/notes/ical-events/

in particular, you may find this repeating events 'cheatsheet' useful http://icalevents.com/2447-need-to-know-the-possible-combinations-for-repeating-dates-an-ical-cheatsheet/

Ics areas that need careful handling:

  • 'all day' events
  • types of dates (timezone, UTC, or local 'floating') - nb to understand distinction
  • interoperability of recurrence rules
share|improve this answer

An addition to @Stefan Gehrig 's answer -

I spent a lot of time banging my head over white space with the ics format! If you get an error that says it is an invalid calendar type, check around for white space that may be stopping it from working at the end of every line!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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