Subscribed calendars push

Hi everyone,
Following subscribed calendars moving to mobile me in the 3.1 update I'm having problems.
First off I removed the subscribed calendars from my iPhone (accounts) so to remove the duplicates.
I have around 8 subscribed calendars but the main ones causing issues are my wifes 'home' and 'work' calendars which change/update regularly. When she creates an appointment it gets pushed to ical on my mac, but isn't being pushed to my iphone, which is where I want to see the appointment 70% of the time.
This is also happening vice versa for her iPhone and my appointments.
Any advice greatly received!!!

Hey guys-
I'm having the same problem, but I am researching when these subscribed calendars on the iPhone update. So far, I've been able to observe that they update when you turn off and turn back on the iPhone.
Next I see if the "Fetch" schedule has any affect. Check your fetch, if it's set to "Manual" my guess is it will never update. I'll confirm back once I know if it updates based on the set Fetch schedule.
js

Similar Messages

  • HT5029 Reconfiguring existing subscribed calendars to push with iCloud

    I am not able to complete "Reconfiguring existing subscribed calendars to push with iCloud" using the directions given. The location, neither On My Mac, nor iCloud show up when I try to reconfigure (as shown in instructions here: http://support.apple.com/kb/HT5029).  When I choose Get Info from my birthday subscription calendar, I can only "Ignore Alerts" or "Open Address Book."
    I want to be able to see my birthday calendar items on iCloud.
    Any help would be appreciated!
    Many thanks, Cheryl

    Greetings Cheryl,
    The Birthday calendar in iCal s not a server based subscription which is what that article you reference deals with.  The Birthday calendar feeds directly from the contents of the Address Book on your Mac.
    To have your birthdays in iCloud:
    Go to Apple > System Preferences > iCloud -- Make sure "Contacts" (aka Address Book) is checked.
    Then follow this article: http://support.apple.com/kb/PH2676
    Hope that helps.

  • How to get SUBSCRIBED calendars synched on iPhone/MobileMe

    Create, and place this Apple script in your Appliations folder
    Instructions follow the script...
    -- iCal Duplicator 2.0
    -- MobileMe Push Sync with iCal does not currently support susbcribed calendars. This has disappointed some like
    -- myself, who rely extensively on subscribed calendars. This kludgy solution copies events from a subscribed calendar
    -- to a local calendar. Set your calendar names in the script, then run the script on a weekly/daily basis or manually to
    -- update your local copy/copies based on the subscribed calendar.
    -- Support for copying from multiple calendars has been added. You'll need to enter the source and destination names as
    -- pairs. If you want multiple subscribed calendars copied into one local calendar, you can enter the local calendar names
    -- multiple times as I have for the "Combined - Local" calendar.
    -- Christian Lindemer, July 15th, 2008 {macosxhints (a) dethbunny (.) net}
    -- * * * Edit values to match actual calendar names * * *
    -- The subscribed calendars
    property sourceCalendarNames : {"Davidcopy", "Othercopy"}
    -- The blank local calendar(s) to copy in to, in the same order as the source calendars
    property destinationCalendarNames : {"Davidcopy", "Other"}
    -- how many days to go back - the more you add, the slower the script runs.
    property oldEntryDays : 1
    on run
    --make sure we have valid names.
    try
    tell application "iCal"
    repeat with testName in sourceCalendarNames
    --this throws an error if there is no calendar with the given name, thus checking the calendar's validity.
    set testCal to (the first calendar whose title is the testName)
    end repeat
    repeat with testName in destinationCalendarNames
    set testCal to (the first calendar whose title is the testName)
    end repeat
    end tell
    on error
    --if a name can't be found, alert user and halt.
    calendarNotFound(testName)
    return --this effectively quits the script
    end try
    repeat with destName in destinationCalendarNames
    clearEvents(destName)
    end repeat
    set calendarCount to 1
    --repeat through all calendar names
    repeat with sourceName in sourceCalendarNames
    --get the calendar names and pass them to the copyEvents function
    set destinationName to item calendarCount of destinationCalendarNames
    copyEvents(sourceName, destinationName)
    set calendarCount to (calendarCount + 1)
    end repeat --repeat through all calendar pairs
    end run
    on calendarNotFound(notFoundName)
    display alert "Calendar named " & notFoundName & " was not found in iCal. Please edit the script to match your calendars."
    end calendarNotFound
    on clearEvents(destCalName)
    tell application "iCal"
    --Clear the destination calendar
    set destCalendar to (the first calendar whose title is the destCalName)
    set calendarEvents to (events of destCalendar) -- get the destination calendar's event list
    repeat with myEvent in calendarEvents -- delete each existing event
    delete myEvent
    end repeat
    end tell
    end clearEvents
    on copyEvents(sourceCalName, destCalName)
    tell application "iCal"
    set sourceCalendar to (the first calendar whose title is the sourceCalName)
    set destCalendar to (the first calendar whose title is the destCalName)
    set calendarEvents to (events of sourceCalendar) -- get the calendar's event list
    repeat with myEvent in calendarEvents -- repeat for each item found in the source event list
    --Don't bother with old events
    if start date of myEvent > ((current date) - oldEntryDays * days) then --event is in future, or within prefs for old entries
    -- gather relevant details of event to create new event with
    set eventStart to start date of myEvent
    set eventEnd to end date of myEvent
    set eventAllDay to allday event of myEvent
    set eventSummary to summary of myEvent
    -- create event in destination calendar with details of subscribed event
    tell destCalendar
    make new event at end with properties {summary:eventSummary, start date:eventStart, end date:eventEnd, allday event:eventAllDay}
    end tell
    end if --if not older than 'oldEntryDays' days ago
    end repeat --iterate through entries in source calendar
    end tell
    end copyEvents
    Let's say you have a subscribed calendar named "David"
    Go into iCal and create a new calendar ("on my Mac") named "Davidcopy" with the same color as your subscribed calendar.
    Repeat for any other subscribed cals you want to sync to iPhone.
    Open the CopyCal script
    Edit the first line of (uncommented) code which starts with property sourceCalendarNames:
    Change the names of the cals in this list to match the subscribed cals you wish to copy
    Edit the list on the next line to match the NEW cals you created ("Davidcopy" etc)
    Next look at iCal and uncheck the subscribed cals.
    Run the script and watch the copying take place.
    Now to automate this, set up an event everyday (as often as you like). Preferably this can be in another calendar you don't publish - so everyone doesn't have it cluttering their view of your cal.
    For example I have events named "sync" at 9:30am and 5pm every weekday. For the alarm, use "Run Script" and choose the CopyCal.scpt.

    on copyEvents(sourceCalName, destCalName)
    tell application "iCal"
    set sourceCalendar to (the first calendar whose title is the sourceCalName)
    set destCalendar to (the first calendar whose title is the destCalName)
    set calendarEvents to (events of sourceCalendar) -- get the calendar's event list
    repeat with myEvent in calendarEvents -- repeat for each item found in the source event list
    --Don't bother with old events
    if start date of myEvent > ((current date) - oldEntryDays * days) then --event is in future, or within prefs for old entries
    -- gather relevant details of event to create new event with
    set eventStart to start date of myEvent
    set eventEnd to end date of myEvent
    set eventAllDay to allday event of myEvent
    set eventSummary to summary of myEvent
    set eventRecurrence to recurrence of myEvent
    -- create event in destination calendar with details of subscribed event
    tell destCalendar
    make new event at end with properties {summary:eventSummary, start date:eventStart, end date:eventEnd, allday event:eventAllDay, recurrence:eventRecurrence}
    end tell
    end if --if not older than 'oldEntryDays' days ago
    end repeat --iterate through entries in source calendar
    end tell
    end copyEvents

  • Subscribed calendar deletions not reflected in ical

    Hi,
    I use webcalendar (http://www.k5n.us/webcalendar.php) as a web based calendar tool for managing my family whereabouts and plans. I have 5 users within the web tool and all 5 users have enabled remote subscriptions.
    I subscribe to all 5 calendars from my MacBook in order that I can then sync these up onto my IPOD iTouch and all this is working fine.
    My problem is that when I delete an item from within WebCalendar this is not reflected on iCal and the only way I can seem to work around this is through deleting the subscribed calendars and recreating them. As I don't seem to be able to automate this using a applescript this is a tedious task hence raising a plea for help on this forum.
    Thanks in advance for any pointers...

    This is a schema issue with QuickBooks, and you'll have to continue to update these items by hand until the issues is addressed by the Intuit programming team. I cannot believe that they are not already aware of it, but you should report it anyway.
    On its face, it is ridiculous for them to create an event with an end point value which occurs prior to the start point value. All day events cannot end before they start! Actually, no event can end before it starts…
    By definition, an all day event in iCal is one which starts on a particular date at 12:00:00 +0000 and ends at 12:00:00 +0000 on the next day. For example, an all day event on March 15, 2006 is represented in the truth [when pushed from iCal] as:
    2006-07-15 12:00:00 +0000
    2006-07-16 12:00:00 +0000
    NOTE: I didn't pick those representations and that's not the way I would have chosen to do it, but it is what the iCal programming team has done.
    As a user, you don't see the time values, and the date representation in the inspector panel is shown [for the above example] as:
    07/15/06
    07/15/06
    Again, an all day event cannot end before it starts. So the data provided by the Intuit application is invalid: in effect, the event they have defined does not exist.

  • Problem with subscribed calendars

    Hi all, I have a problem with subscribed calendars and a app that I use the developer says the problem is with apple so I thought I would ask here.
    I use Roster Buster to decode my airline roster which is then available as a calendar for me to subscribe to, this all works very well but as soon as I subscribe to my wife's roster buster calendar the problems start. Every time I enter calendar all events are there for both my wife's flights as well as my own but as soon as calendar refreshes all events change to the same so we both have the same flights ( either all my flights or my wife's ) so I have to refresh all calendars again to overcome this.
    This only happens on the iPad and only since  ios7 works fine on the iPhone 5.
    Any ideas ?
    Regards Stuart. 

    I've got what i think is a pretty good fix to this.
    subscribing to calandars via iCal on your Mac is the way to go. you can subscribe, set the colour and tell it to push via iCloud to your iOS devices. they come through with the correct colour and stay that way.
    all good
    however, i can't seem to delete the subscribed calandars i have on my iPhone. every time i delete the subscription, they just come back in again! quite annoying, but at least you can untick it so that it doesn't show up. which it would go away for good though.
    much happier now i'm controlling everything through iCal and iCloud

  • Subscribed calendars to iCloud?

    In my multiple iOS mobile devices I have the US Holidays added as a "Subscribed Calendar"
    I would like them to appear also on my browser based iCloud Calendar (https://www.icloude.com/#calendar). 
    There is no way to subscribe to calendars for the iCloud App (Apple please consider this) so I am missing all these events there. 
    However I was hoping that since they appear on my iPhone/Pad they would get synchronized with the Windows desktop iCloud calendar.
    That doesn't seem to be happeninng, however.  Is there anyway to get the "ical.mac.com/ical/US32Holidays.ics" calendar subscription to work on the PC desktop?

    randers4 -
    Thanks for all your efforts, but I am NOT using Outlook.  I am running the iCloud Calendar web page as a "App" in Google Chrome.
    Works like a charm and is beautifully sync'd with changes I make there or on an iOS device.  Indeed changes appear everywhere within less than 5 seconds typically.
    I have everything I want on the mobile devices, I just can't get the US Holidays to show up in the web based browser iCloud window, as there seems to be no mechanism to push such additional calendars into the cloud, and the mobile devices do not seem to sync anything other than their "native" calendar.
    Thus I am trying to get this holiday calendar to show up only on the web based browser viewed (on a PC) iCloud Calendar.

  • Syncing subscribed calendars

    I subscribe to our family calendar from my wife's Mac and I maintain a personal calendar on my Mac. My personal calendar syncs to my iPhone without a problem, but I can't get the subscribed calendar from my wife's computer to sync to the my iPhone. Can this be done?

    Yes, it's possible, but it might not be what you're wanting. The problem is that push sync doesn't work (yet?) with subscribed calendars. See the article here: http://support.apple.com/kb/TS1213
    The way I've been able to work around this is to disable push, or "over-the-air" sync, and then only sync calendars when syncing over the USB cable. To do this, on your iPhone to go Settings -> Mail, Contacts, Calendars -> then for each of your accounts (or in my case, just for .Mac), set 'Calendars' to Off.
    Then in iTunes, with your iPhone connected, sync your iPhone once, then go to the Info tab for your iPhone, and make sure the settings for "Sync iCal Calendars" is enabled for the right calendars.
    I've been checking back on that knowledge base article about once a month, and have yet to see any sign that Apple has fixed this problem. A search through the discussions shows that lots of folks are wanting push sync for subscribed calendars to work, so we are not alone!
    I hope this helps.

  • Syncing Subscribed calendars with iCloud?

    I'm not initially finding a way to push calendars I've subscribed to on my MacBook in iCal to the cloud and thus my other IOS devices. Does anyone know if this is possible?

    We have had a long discussion about this, se this thread:
    https://discussions.apple.com/message/16873986#16873986
    Subscribed calendars will NOT show up in iCloud.com (the web calendar) unless they are shared among iCloud users as "private" calendars. If you want them to, you must make some kind of workaround. In the thread above at page 1 Mr. julian Wright describes one such workaround. But ifit is a calendar that updates frequently, this is not a good option

  • How do I get subscribed calendar events to show on my iPhone 4?

    I have a subscribed calendar in iCal on my desktop that shows up in the list of iCloud calendars on my iPhone, but none of the events actually show up on my iPhone even though that calendar is selected to show its events.  How can I fix this?  It's really strange that my phone "sees" the calendar, but won't show the events that are in it!  Very frustrating!
    I've already tried unsyncing and resyncing all of the calendars on my iPhone (i.e. I turned off iCloud calendar syncing, deleted all calendar info on my iPhone, then turned iCloud calendar syncing back on).  No luck.

    I had a similar issue.  Basically, I gave up trying to "sync" that particular calendar with my iPhone and instead subscribed to the subscribed calendar directly on the iPhone.
    To do this, you have to essentially set up a new "account" in the Mail/Contacts/Calendars settings.  Go to Add Account > Other, and selecte Add Subscribed Calendar at the bottom.  Paste in the URL of the calendar you wish to subscribe to, and it should be added to your calendar.  Best part is that it will automatically update as the calendar publisher updates it.  Be sure to disable that calendar in iCloud, too btw.

  • How can I change the color of subscribed calendar?

    Hello!
    I have subscribed two calendars from the internet at my ipad. They automatically got the colors green and red. Now I wanted to change these colors. So I did it and changed them in the calendar-app of the iPad to blue and yellow. At first it worked. But after a few minutes, the colors automatically changed back to green and red. And that happens all the time. Whenever I change the colors of my subscribed calendars, they automatically change back a few moments later.
    Why does it happen? And how can I make my iPad keep the new color settings?
    I am using iOS 5.0.1

    I figured out a solution for changing the other calendars but not the birthday calendar. Although it's not the most direct fix, it worked for me. Apparently Apple didn't think to give us the ability to choose the calendar color. I use Entourage and sync over the air. When I upgraded to iOS 4 my calendar turned bright red and the birthday calendar was blue. I don't use the birthday calendar so it isn't even enabled in my case. What finally worked was to go through the calendar colors one at a time by disabling and re-enabling the calendar in my mail account settings. I would double click the home button to quickly switch between settings and calendar to check the color each time I enabled the calendar. I had to do this 4 or 5 times to cycle through until blue came back up.

  • Please help!  Code 4: Unexpected Error on Subscribed Calendars

    Hi there,
    I am trying to subscribe to an iCal feed that I created in Yahoo Pipes. When I do so in iCal, I get this error: Code 4: Unexpected Error on Subscribed Calendars
    http://tinyurl.com/3zpgrg (screenshot)
    This is the ical feel that I am trying to subscribe to:
    http://pipes.yahoo.com/pipes/pipe.run?id=BIpsYf9q3RGvUZDNBR50VA&render=ical
    I've tested that the feed is functional because I have no problem subscribing to it in Google Calendar.
    Does anyone have any suggestions about what I may be doing wrong? I have been pulling my hair out trying to get this to work for some time now -- and the alternative (using Google Calendar) is not pleasant!
    This is with all updates installed including OS X 10.5.5
    Thanks so much,
    Tyler
    [email protected]

    Does anyone have any ideas? This is driving me nuts!
    Thanks=)

  • Can I choose which subscribed calendars are synced via MobileMe?

    So the recent update synced all of my subscribed calendars to my phone. I don't necessarily want to do this because I subscribed to every employee's calendar in my office as well as my wife's calendar. Ideally, I'd like to ONLY subscribe to my wife's calendar.
    Is there a way around this? Do I have to turn of Calendary syncing all together? If I do that, will my personal calendars no longer sync unless I plug the phone in? Doesn't that suck? Is there a new update coming? Have I asked too many questions?
    Thanks!

    I took advantage of the MobileMe chat support to ask this question a few weeks ago, and they said no go--via MM, it's all subscribed calendars or nothing. It used to be that MM did not support subscribed calendars at all (I think)--an update added this feature but gave us no control over it.
    The chat agent might have suggested that selective syncing would be part of the next MM update, but I failed to pay much attention to that part, or to follow up, sorry.
    I think this is part of why I'm an update or so behind. Also, I installed Mozilla's Sunbird as a calendar application, and subscribed to calendars in that. Which lets me check them when I want to, but keeps them out of the syncing loop. Moving employee calendars there might be an option.
    It's possible this program might help, not sure, but it seems to be recommended for a number of calendar issues:
    http://www.busymac.com/

  • Why is a subscribed calendar not updating in Calendar on iPhone?

    There is a subscribed calendar I control which I use regularly in Calendar (iCal). When I make changes to the source of the calendar on the web, the changes to the subscribed calendar are very quickly update in Calendar on my MacBook, which I appreciate. However, this does not successfully occur in Calendar on my iPhone. I have been trying to figure out off-and-on for a couple weeks why it doesn't update in Calendar for iPhone. I have spent no less than ½-hour working on it, via trying to edit the calendar, look at settings, double-check which calendars are showing to make sure it's the correct one, etc., etc., and I cannot figure it out. Why are changes to a subscribed calendar showing up successfully in Calendar on Mac but not in Calendar on iPhone?

    Hey xcwomac.
    I did some research and found this:
    http://www.makeuseof.com/tag/google-calendar-wont-sync-ios-try-fixes/
    It worked out just fine for me, hope it helps you.
    Cheers.

  • ICal subscribed calendar on the iPhone

    Hi,
    I've run on the Mac OS X Server calendar services.
    What is the URL for the calendar subscription? (not CalDAV account)
    I want to add Subscribed calendar on the iPhone! 
    thx for Help
    SH

    Might be the problem that I'm reporting here http://discussions.apple.com/thread.jspa?threadID=2044448&tstart=0

  • Using iCal with Google Calendars: can view subscribed calendars, but not add to them

    Something recently happened to my google calendars causing them to all disappear from Google. Anyway, that mystery remains.
    I am currently trying to re set up iCal to sync with Google Calendars and things aren't working quite right.
    In iCal, I've done Calendar>Subscribe and entered the URL for that particular Google calendar. This has been completed for the 5 separate Google calendars I have and they show up in the list of subscribed calendars.
    However, if I attempt to create a new event, the only calendar choice I have is for the main GMail calendar, not any of the subscribed "sub calendars".
    In Preferences>Account, If I select Google and then go to the "delegation"tab, there is a message that states "You can't see delegation settings when this account is offline."
    Can anyone offer some advice?
    Thanks.

    That's the part I always forget how to do. See if this answers your question:
    To select which calendars to sync to your Apple device, follow these steps:
    Open the Safari browser on your device and go to http://m.google.com/sync
    Sign in with your account and select your device from the list of devices you've set up for Google Sync.
    It's from this site: http://www.google.com/support/mobile/bin/answer.py?answer=139206

Maybe you are looking for