I want to integrate outlook calendar with my site, so when the users add events to the online calendar they also can be added to the outlook calendar (synchronize). Obviously a site built using PHP can not integrate with desktop application directly, so I am looking alternative options.

Some options I found:

  • Using PHP ICAL library creates an .ics file and the user can download it and install. Not the most user friendly way of doing it, might work.
  • Use SharePoint or exchange server- but have no previous experience working Microsoft technologies, so it not ideal.
  • Use Google Calendar and Zend Library (gdata), create online calendar and add events to that. Then using Google Calendar Sync tool the user can sync the online calendar to outlook. But the problem here is the all users need a gmail account to use the Sync tool, it not ideal when you have thousands of users on the site. Unless I create one global gmail account and create many calendars on that account, if that even possible.

So my questions:

  1. Are there any outlook plug-ins paid or free (ideally) that can achieve this?
  2. Are there any web service/ APIs that can achieve this?
  3. Any other ideas or solutions?

Thanks guys and gals.

link|improve this question

60% accept rate
I looked into this for a Java app (scheduling meetings from a web app to an Exchange Server). You technically aren't integrating with Outlook; it's the mail server that syncs to the (Outlook) client, probably an Exchange server, or an IMAP/POP system running something else that Outlook can sync to. That's what you need to look into. Also note, at least last year Microsoft didn't make sending meeting/appointment requests from outside MS technologies very easy. You might look for an intermediary SOAP/REST pass-through. – Jared Farrish Feb 4 at 15:03
Exchange Web Services (EWS) CreateItem (Calendar Item) and operations. – Jared Farrish Feb 4 at 15:08
feedback

1 Answer

you could do this by having the outlook subscribe to the online calendar.

with phpicalendar you can have other clients subscribe to your calendars (here)

you may want to tweak the generated .ics file to include X-PUBLISHED-TTL - Recommended update interval for subscription to the calendar

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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