ICal don't sincronize with MobileMe? somebody knows?

iCal don't sincronize with MobileMe? somebody knows?

Please post your system details when you have a question - and more detail would help: it's difficult to give a cogent answer when the question is as vague as this.
If you haven't upgraded to the new MobileMe calendar then you should: it's no longer optional: please see
http://homepage.mac.com/rfwilmut/notes/calendarsync.html
If you are using Leopard or Tiger please particularly note the comments regarding those systems.

Similar Messages

  • ICal no longer synchronising with MobileMe

    My wife has an iMac and a MacBook both synchronising with (and via) MobileMe. Both Intel machines are running Snow Leopard.
    All were synchronising perfectly, including iCal, until as requested by MobileMe, I upgraded to the New Calendar.
    Now only the Imac synchronises correctly. TheMacBook returns a pop-up stating that the iCal has "either wrong ID login OR wrong Password" !
    (Le serveur n’a pas reconnu votre nom d’utilisateur ou votre mot de passe pour le compte « [email protected] ». Assurez-vous de les avoir correctement saisis.)
    I have stopped the synchronisation and cancelled the iDisk synchronising.
    Then connected again at the level of MacBook and logged again to the account. And synchronised again. It states first login for the calander.
    The MacBook synchronises but the calendar returns the error.
    My wife's account is sub (family) account of my main MobileMe account.
    Help me please as I really don't understand nor do I know what to do !
    Regards,
    Kevin in France

    Thanks for the effort and response. I was able to contact Apple Help and I downgraded back to the old mobileme iCal. The new mobileme iCal is very inflexible. The Month header takes a huge font. Fonts on appointments can't be changed and, as a result, appointments can be seen in their entirety. There are other very irritating things about the new iCal and my conclusion is that it's just a very weak attempt at Outlook and has a long way to go before it's usable. I just hope Apple doesn't cut us off the "old" calendar which works very well (and has for some time now)

  • ICal not syncing correctly with MobileMe

    For the last week or so, ever since MobileMe was being updated, my iCal synching with MobileMe and iPhone has stopped working correctly. When I enter a meeting into iCal, it syncs to MobileMe and therefore my iPhone.
    HOWEVER, any new calendar entries from the iPhone (or MobileMe's website directly), do not show up on iCal even after i try to manually Sync them. Furthermore, if I change the time of a meeting or call on iCal, a DUPLICATE meeting is created in MobileMe, thus polluting my calendar on the iPhone and MobileMe with multiple entries. When I am on the road, I can't figure out which is the correct meeting anymore.
    Not sure if this is due to new iTunes or the update with MobileMe servers last week.
    Here is what I have done to troubleshoot this to date:
    - In MobileMe preferences, I stopped synching my MacBook with MobileMe and wiped out all of the data on MobileMe. I rebooted my MacBook, then, I Reset Sync Data from iCal to MobileMe. It seeded fine, but still doesn't show any appointments created from the iPhone or within MobileMe on my iCal after re-syncing.
    - I deleted my MobileMe account on my iPhone. Rebooted iPhone. Re-added my MobileMe account to the iphone and synched the calendar. The calendar syncs and shows up, but still no appointments created on my iPhone or within MobileMe show on my iCal.
    - I have also tried to NARROW the variables of my issue by not synching ANYTHING ELSE other than iCal (no contacts, mail settings etc.). To No avail, still doesn't work.
    Any suggestions?? I sense there is something cached in the bowels of my iCal settings, but have no idea to re-set them to re-enable synching.

    I solved the issue. I took a risk and wiped my MobileMe account clean one last time, then RESET SYNCH Data from my MacBook to MobileMe.
    Then, I crossed my fingers and deleted my calendars on my iCal desktop.
    I then, chose RESET SYNCH Data FROM MobileMe TO MacBook pro - effectively overwriting my iCal with the same data I just uploaded into MobileMe.
    The result? Everything started working again. I added meetings to my calendar with my iPhone and they showed up on my iCal Desktop (MacBook). Yeah!

  • After upgrading to Lion, iCal doesn't sync with MobileMe

    After my upgrade to the new Lion OS X, the iCal doesn't sync properly with MobileMe; events from MobileMe will go to iCal but they will not go from iCal to MobileMe.
    In System Preferences/Internet & Wireless/Mail, Contacts & Calendars: I've tried reinstalling MobileMe  and checking the Calendar & Reminders box, but that didn't work.
    In System Preferences/Internet & Wireless/MobileMe:  It doesn't show a calendar.  Clicked sync now, but that didn't work.
    Any suggestions?

    Tanner,
    In System Preferences/Internet & Wireless/MobileMe:  It doesn't show a calendar.  Clicked sync now, but that didn't work.
    I have not seen, nor am I aware of that setting in System Preferences.
    (Option + Click) on the Sync Icon in the Menu bar. If you do not see Sync status in the Menu bar, go to System Preferences...>MobileMe>Sync>...and check the "Show Sync status in menu bar.
    You will see these selections:
    Try the "Open Sync Diagnostics..." selection and you may get some clues.
    If that is unsuccessful, backup your calendars and choose Reset Sync Services...

  • ICal and subscribed calendars with MobileMe using AppleScript

    I am having the same problem as many of you; I have a MobileMe account which does not sync the calendars I have in iCal that are subscriptions. I found this great script online which I'll post below. I don't know anything about AppleScript so I'm just copy-pasting. I want it to work, but I'm getting the error "The variable theOldEvent is not defined." right around the line "if similar_found is true then set theOldSummary to the summary of theOldEvent" kinda near the middle. Like I said, I don't know anything about AppleScript. So my question is; how can I fix this error and/or is there some better way of using AppleScript/Automator to do this same thing? Thanks!
    Script to duplicate Calendar orgCalendar into target dupCalendar
    E.H. 12.9.2008
    property myCopies : 0
    property myUpdates : 0
    property myObsoletes : 0
    property orgCalendar : "Sekretariat"
    property dupCalendar : "Sekretariat copy"
    property dupEvents : {}
    property myDeletes : {}
    set myCopies to 0
    set myUpdates to 0
    set myObsoletes to 0
    set dupEvents to {}
    tell application "iCal"
    -- set theCalendars to every calendar
    set theCalendarNames to title of every calendar
    set theOrgCalendar to a reference to calendar orgCalendar
    if theCalendarNames contains dupCalendar then
    set theCalendar to a reference to calendar dupCalendar
    else
    set theCalendar to make new calendar with properties {title:dupCalendar}
    --set theCalendar to make new calendar with properties {title:dupCalendar, color:"{65535, 0, 0}"}
    end if
    set the eventList to uid of every event of theOrgCalendar as list
    set the eventCount to the count of the eventList
    repeat with theUId in eventList
    tell theOrgCalendar
    set theEvent to (the first event whose uid is theUId)
    -- set theProperties to the properties of theEvent as record
    set theDate to the start date of theEvent
    set theSummary to the summary of theEvent
    set theStampDate to the stamp date of theEvent
    end tell
    tell theCalendar
    try
    set theOldEvent to (the first event of theCalendar whose (start date) is theDate as date)
    set similar_found to true
    on error
    set similar_found to false
    set theEndDate to the end date of theEvent
    set theAllDay to the allday event of theEvent
    set theLocation to the location of theEvent
    -- Funny construction to work araund the fact that location may be missing a value
    try
    if theLocation is equal to "" then
    end if
    on error
    set theLocation to ""
    end try
    set theDescription to the description of theEvent
    try
    if theDescription is equal to "" then
    end if
    on error
    set theDescription to ""
    end try
    if theAllDay is true then -- work around a funny bug with all day events
    set theDate to (theDate as date) + 2 * hours
    set theEndDate to (theEndDate as date) + 2 * hours
    end if
    set newEvent to make new event at end with properties {summary:theSummary, location:theLocation, start date:theDate, end date:theEndDate, allday event:theAllDay, description:theDescription}
    -- make new event at end with properties theProperties
    set the end of dupEvents to (the uid of newEvent)
    set myCopies to (myCopies + 1)
    end try
    end tell
    set second_necessary to false
    if similar_found is true then
    set theOldSummary to the summary of theOldEvent
    if theSummary is not equal to theOldSummary then
    --is there a different one?
    try
    set theOldEvent1 to (the second event of theCalendar whose (start date) is theDate as date)
    set theOldSummary to the summary of theOldEvent1
    if theSummary is equal to theOldSummary then
    set theOldEvent to theOldEvent1
    set the end of dupEvents to (the uid of theOldEvent)
    else
    -- cycle repeat ?
    end if
    on error
    -- beep
    try
    set theEvent1 to (the second event of theOrgCalendar whose (start date) is theDate as date)
    set second_necessary to true
    on error
    set the end of dupEvents to (the uid of theOldEvent)
    end try
    end try
    else
    set the end of dupEvents to (the uid of theOldEvent)
    end if
    if second_necessary is true then
    set theEndDate to the end date of theEvent
    tell theCalendar
    set theOldEvent to make new event at end with properties {summary:theSummary, start date:theDate, end date:theEndDate}
    end tell
    set the end of dupEvents to (the uid of theOldEvent)
    end if
    set theOldStampDate to the stamp date of theOldEvent
    if theStampDate is greater than theOldStampDate then
    -- update the event
    set summary of theOldEvent to theSummary -- capitalization may have changed
    set theAllDay to the allday event of theEvent
    set allday event of theOldEvent to theAllDay
    set theEndDate to the end date of theEvent
    if theAllDay is true then -- work around a funny bug with all day events
    set theEndDate to (theEndDate as date) + 2 * hours
    end if
    set end date of theOldEvent to theEndDate
    set theDescription to the description of theEvent
    try
    if theDescription is equal to "" then
    end if
    on error
    set theDescription to ""
    end try
    set description of theOldEvent to theDescription
    set myUpdates to myUpdates + 1
    end if
    end if
    end repeat
    end tell
    -- Delete obsolete events
    set myObsoletes to 0
    set myDeletes to {}
    tell application "iCal"
    set myUIDs to uid of events of theCalendar
    end tell
    repeat with myUID in myUIDs
    if dupEvents does not contain myUID then
    set the end of myDeletes to myUID
    set myObsoletes to (myObsoletes + 1)
    end if
    end repeat
    tell application "iCal"
    repeat with myDel in myDeletes
    delete (every event of theCalendar whose uid is myDel)
    end repeat
    end tell
    -- delete duplicates
    set myDeletes to {}
    tell application "iCal"
    set myStarts to start date of events of theCalendar
    set mySummaries to summary of events of theCalendar
    set myUIDs to uid of events of theCalendar
    set myLength to length of myUIDs
    end tell
    repeat with i from 1 to (myLength - 1)
    set thisStart to (item i of myStarts)
    set thisSumm to (item i of mySummaries)
    repeat with j from (i + 1) to myLength
    set thatStart to (item j of myStarts)
    set thatSumm to (item j of mySummaries)
    if thisSumm is equal to thatSumm and thisStart is equal to thatStart then
    set the end of myDeletes to (item j of myUIDs)
    exit repeat
    end if
    end repeat
    end repeat
    set n to count of myDeletes
    tell application "iCal"
    repeat with myDel in myDeletes
    delete (every event of theCalendar whose uid is myDel)
    end repeat
    -- set the visible of calendar theCalendar to false
    end tell
    display dialog (myCopies & " records duplicated, " & myUpdates & " records updated and " & myObsoletes & " obsolete ones deleted") as text

    No longer an issue.

  • Ipod touch don't sincronize with nikeplus site ...

    I have buyed the sensor and i go to run a session.
    When i came back the ipod work good, when i connect with PC the information are in itunes but itunes don't make me a modification to nike plus site ... ..
    look ..
    http://img266.imageshack.us/img266/6782/exmag0.jpg
    there aren't the button to modyfy the nikeplus account ...

    Hello all!
    I had the same problem as you described with your iPod Touch and Nike+ not syncing to the website. Here is how I fixed the problem after spending time wiping out my iPod, reloading iTunes and even going to a Apple Store without any success on solving the problem.
    First quit iTunes if you have it running, and open your home user folder. In your home user folder, open the Library folder, then open the Preferences folder. Delete the iTunes preference which is named "com.apple.itunes.plist". Deleting this preference will reset the disabled warnings in iTunes, which I found out later that iTunes will ask you if you want to go to the Nike+ website and sync your run.
    Next, connect your iPod to your computer and open iTunes. Go ahead and let it sync if you have it set to do this when iTunes opens. Over on the left side of the iTunes screen you'll see your iPod in the devices list. Right click your iPod and a little pop up menu will appear and then click Reset Warnings.
    Now disconnect your iPod and go out and make a new run/walk on your iPod (I just went and did the minimum custom distance to make a new run/walk history item on my iPod). This is so you have a new item on your iPod to sync to iTunes which will trigger the window to go sync your data to Nikeplus.
    Once you sync your iPod, iTunes should ask you if you want to connect to Nike+ to sync your run. Click OK, and it will open up your web browser with a Nike+ webpage asking you to either create a new account or login. Don't close that window that came up, just login or make a new account. Once you do this, it will load your run/walk to your Nike+ webpage. Also, if you look at iTunes while your iPod is connected, you should see a button in the Nike + iPod tab that says "Visit Nikeplus.com". Clicking it will take you to the Nike+ website.
    I have not figured out how to re-sync the old runs yet, but at least now the data is loading to the Nike+ website. I hope this helps you out there. If you need screen snapshots to see the different items I wrote above in iTunes, please let me know.

  • ICal won't syn with MobileMe

    I can't seem to get MobileMe to synd my iCal with my tower. Tower has Leopard on it - upgraded from Tiger. Any suggestions?

    hmmmm, never mind, it seems to work now.

  • The album covers don't sincronize with my iPhone 4.

    On iTunes i have every album with its cover image but i've resincronized all the music of my iPhone and the album covers haven't sincronized, like if they don't have. Before this some covers changed alone between albums. Is it a common problem? How can i solve it?
    I have the latest version of iTunes (11.0.2) in my iMac 21,5 inch and also the lastest version in my iPhone 4 (6.1.3).
    PS: Excuse my english, my first lenguaje is spanish although i made an effort to write this well

    I have the same problem.
    When I upload new music on my iphone, the album covers are all unmatched! In iTunes files are correct and if I put the same songs into my iPad, the covers are all alright. Another "funny" (not at all) stuff is that if I erase and then reupload the same song, cover art are different from the ones uploaded before... Everything started when I upgraded my iOS to 6.1.4.
    I think this is a software bug, please check and provide a solution!

  • My iPod 6ª don't sincronize with polar wearlink, why god!?

    I buied a polar wearlink for see my hearth frequency, but when I tryed sincronize . . . nothing happened.

    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar                          

  • IPad iCal doesn't sync since Mobileme Calendar Beta

    Hello there,
    Everything is in the title. Can't sync iCal on my iPad with Mobileme anymore. Any idea or link?
    Thanks!

    Hi, Vincent.
    I banged my head against this one for a while myself. Finally, I did a search on apple.com/support and found this knowledge base article:
    http://docs.info.apple.com/article.html?path=MobileMe/Help/en/mmcc733205.html
    Hope it helps.

  • Synced ical with mobileme, now can't edit calendar

    Hi, I synced ical through mobileme thinking mobileme would serve as a "backup" for my ical. I use ical on my macbook and don't check the mobileme calendar.
    but now i can't write on my ical when it is open on my macbook.
    how can i change the settings so that i can use ical on my macbook and have it backed up on mobileme?
    if this is impossible please tell me how to restore the original settings and get my ical off mobileme.

    Hello Doxiechick and welcome to the Palm forums.
     Are you sure you are syncing with Microsoft Outlook and not a Microsoft Exhcange server or some other corporate email system?  If you are syncing a Palm OS device, like the Centro, to Microsoft Outlook, the default database files don't get deleted.  My guess is that there is something else going on here, especially if you have contacts on your Centro.
    Alan G
    Post relates to: Treo 755p (Sprint)

  • Does somebody know how to synch Windows Live calendar (ie the Hotmail one) with Calendar (Mountain Lion)?

    Does somebody know how to synch Windows Live calendar (ie the Hotmail one) with Calendar (Mountain Lion)?

    You will need to selct other at the bottom and then put in your hotmail.
    alternativly read this ms forum http://answers.microsoft.com/en-us/windowslive/forum/hotmail-calendar/ical-and-h otmail-calendar-sync-setup/2086d109-d763-40aa-9e1b-0eae8b8b3596
    Ryan

  • Somebody Knows how to use Roambi with Excel spreadsheet? I leed the process. Thanks

    Somebody Knows how to use Roambi with Excel spreadsheet? I leed the process for my IPAd

    I don't even know what it is, but have you explored the support available from the developer?  http://www.roambi.com/iphone-videos.html

  • How do I use Back to My Mac with a new Time Capsule if I don't have a MobileMe account?

    I just got a new time capsule and I'm trying to set it up so that I can remotely access the files when I'm at work/on the go etc. Now I have an iCloud account, but I don't have a MobileMe account. I do have an @me.com address because I enabled Mail thru the iCloud pref pane and I setup the @me.com email address but I'm still not able to use back to my mac.
    I am running the latest fully updated version of lion on the latest model air, working with a 2TB 4th gen time capsule

    See the following:
    Back to My Mac- Supported router devices
    Mac OS X 10.7 Help- Use Back to My Mac
    Mac OS X- Using and troubleshooting Back to My Mac with your iCloud account on OS X Lion
    Setting up and using Back to My Mac with an 802.11n-based AirPort base station, or Time Capsule
    What happens to Back to My Mac after I move to iCloud?
    Mac OS X 10.7 Help- Share your computer’s screen using Back to My Mac
    What happens to Back to My Mac after I move to iCloud?

  • Now that iCloud has done away with galleries, how can we share as I did with MobileMe? How can we sync non-Apple email accounts across multiple computers?

    Now that iCloud has done away with galleries, how can we share as I did with MobileMe? How can we sync non-Apple email accounts across multiple computers?

    You will need to find a third party solution for online storage in order to share things like photos with others. Some popular solutions to this are dropbox and sugarsync.
    You cannot sync non-iCloud email accounts across your iOS devices and computers unless they are IMAP accounts like iCloud. If they are IMAP accounts, you will do it in the same way as you have always done.

Maybe you are looking for

  • Firefox crashing---most likely related to the plugin container issue, but also unable to uninstall firefox, there is no prompt that opens when I try to.

    Like many others, I've been having issues with firefox since the update. The plugin container seems to crash my browser, or freeze the whole of my computer, and I must restart. I've switched to internet explorer for now. Moreover, now Firefox doesn't

  • How to increase the size of piechart in ssrs?

    Hi how to increase the size of piechart in my design mode its showing very large one,when running/preview mode its displaying very small, i have total 10 values to dispaly in the legend series values,So here i have set the visibulity option to out si

  • Possible to download JDev 903 Beta?

    Is it possible to get a copy of JDeveloper 903 Beta? I was on OracleWorld in Copenhagen and I'd like to try some of the new stuff in 903. Any scheduled release date for 903? /Jan-Erik

  • Cannot find the main class

    Hello, I am running Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_07-b03) Java HotSpot(TM) Client VM (build 1.5.0_07-b03, mixed mode, sharing) on both Windows 2003 Server and Windows XP Professional. Whan I try to run any java program

  • Currency and decimals

    Hi all, Anybody let me know  why the following piece of code is not working.. REPORT ztestdwa . DATA: price type wakp-plvkp. SELECT  single  plvkp FROM wakp INTO price.   IF sy-subrc EQ 0.   ENDIF. here sy-subrc is becoming 4 , pls anybody let me kno