How can I sync my iphone 4s calendar to my macbook pro without using cloud. I can sync from macbook to iphone but not visa versa.

How can I sync my iphone 4s calendar to my macbook pro without using cloud. I can sync from macbook to iphone but not visa versa.  I have not upgraded to Lion so I am not using iCloud. I also have tried send an invite from the calendar so it will appear in my mac mail account. No luck on either.
Thanks!

Follow the steps given here...
Syncing to a "New" Computer or replacing a "crashed" Hard Drive

Similar Messages

  • TS3999 I followed all of these instructions, but still iCloud Calendar will not sync to Outlook Calendar.  Calendar entries will sync from Outlook to iCloud, but not vice versa.  What do I do now?.

    I followed all of these instructions, but still iCloud Calendar will not sync to Outlook Calendar.  Calendar entries will sync from Outlook to iCloud, but not vice versa.  What do I do now?.

    When syncing Contacts or Calendars between an iPhone, iPad, or an iPod touch and Outlook 2003, Outlook 2007, or Outlook 2010, changes that you synced to your computer may not appear in Outlook even after the sync has been completed.Try this article to see if it works for you
    http://support.apple.com/kb/TS1944
    Hope this helps

  • HT1296 How do I get calendar entries made in iPad to sync and update on the computer?  Changes I make on the computer sync properly on the iPad, but not visa versa.

    Hi iPad users - I seem to have this problem with both the iPhone and iPad.  I can make entries onto my computers calendar and they will sync properly on either the iPad or iPhone, but when I enter new information on the iPad or iPhone, which is usually the case, syncing does not result in transfer of updated information from my devices calendar to the computer's calendar.  What am I missing here?  Thanks!

    Same problem as TrailJim, but 4 related problems...
    Synced data did NOT xfer to Mac from iPhone (did xfer the other way). I rechecked settings and synced again. Still none of the info from iPhone went to computer.
    But now I have FOUR COPIES of some calendar items, three copies of some and two copies of others in the iPhone. There are hundreds, possibly thousands of duplicates going back several years and reaching into the future. Many of these dupes were not on the Mac at all- the system duplicated items that were only on the iPhone.
    It takes 15 seconds to delete each duplicate item (five 'clicks', two scrolls)- there is no bulk delete option. Duplicates will  take  hours to remove. It was only 3 months ago I finished cleaning out the duplicates from the last sync. OK, I cleaned cleaned out 1 year of data in about 1.4 hours. I noticed that data deleted long ago re-appeared after the sync. The iOS calendar crashed twice and the entire iPhone crashed once during editing.
    And still it won't xfer calendar items from iPhone to Mac. So these are the 5 problems:
    data won't transfer from iPhone to Mac
    massive duplication of data during sync
    no way to quickly remove duplicates
    deleted data never goes away
    iOS device crashes during massive editing
    After 4 years Apple still can't get sync right. Are there any workarounds? A paper calendar would save hours of work every year. A Google calendar would probably work more reliably if you don't mind sharing your personal data with them. Not to mention all the other data- contacts, music, etc that people have lost with this sync system.
    tia
    Tom
    iPhone 3GS, iMac & MBP OS 10.6.8, iTunes 10, sync via USB

  • HT1692 not able to sync exchange calendar events on iPad made from my computer or iPhone. It works fine when I make an event from iPad, it shows on computer and iPhone but not vice-versa.

    I have an iPhone, Ipad and a Laptop. They all are configured to company's exch.I am not able to sync calendar events on iPad made from my computer or iPhone. It works fine when I make an event from iPad, it shows on computer and iPhone but not vice-versa.

    -Me again - it also won't upload the few new pictures I have on the computer onto the iPad without deleting all the photos that are already there....

  • How can i delete my icloud account but not the password to turn off the find my phone

    how can i delete my icloud account but not the password to turn off the find my phone setting

    Make sure you are signed into iMessage and FaceTime with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iPad and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then save any photo stream photos that you wish to keep to your camera roll (unless using iCloud Photo Library).  When finished go to Settings>iCloud, tap Sign Out and choose Delete from My iPad when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).

  • How can I change my security questions but not knowing them please reply burly bought a gift card, How can I change my security questions but not knowing them please reply burly bought a gift card

    How can I change my security question but not knowing them please rePly quick burley bought a gift card..

    Click here for information. If you can't get the answers emailed to you for some reason(the email may take a few hours to arrive), contact the iTunes Store staff via the link in that article.
    (86811)

  • HT4009 How can i report my bought chips but not credited in my account?

    How can i report my bought chips but not credited to my account.

    You can contact iTunes support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • MP3 Player Auto Starts, How can I get it to load, but not Auto Start

    MP3 Player Auto Starts, How can I get it to load, but not
    Auto Start
    Jeff
    http://www.point1music.com/test

    How do you code it not to stream?
    stopAllSounds();
    stop();
    playlist = new XML();
    playlist.ignoreWhite = true;
    playlist.onLoad = function(success) {
    if (success) {
    _global.songname = [];
    _global.songband = [];
    _global.songfile = [];
    for (var i = 0; i<playlist.firstChild.childNodes.length;
    i++) {
    _global.songname
    = playlist.firstChild.childNodes.attributes.name;
    _global.songfile
    = playlist.firstChild.childNodes.attributes.file;
    trace(songname
    +" "+songfile);
    _root.createEmptyMovieClip("sound_mc", 1);
    _root.sound_mc.sound_obj = new Sound();
    _global.song_nr = random(songfile.length);
    _root.sound_mc.songStarter(songfile[song_nr],
    songname[song_nr]);
    MovieClip.prototype.songStarter = function(file, name) {
    this.sound_obj.loadSound(file, true);
    this.onEnterFrame = function() {
    if (this.sound_obj.position>0) {
    delete this.onEnterFrame;
    this._parent.display_txt.text = name;
    } else {
    this._parent.display_txt.text = "loading...";
    this.sound_obj.onSoundComplete = function() {
    (song_nr == songfiles.length-1) ? _global.song_nr=0 :
    _global.song_nr++;
    _root.sound_mc.songStarter(songfiles[song_nr],
    songname[song_nr]);
    btn_play.onRelease = function() {
    this._parent.sound_mc.songStarter(songfile[song_nr],
    songname[song_nr]);
    btn_stop.onRelease = function() {
    this._parent.sound_mc.sound_obj.stop();
    btn_fw.onRelease = function() {
    (song_nr == songfile.length-1) ? _global.song_nr=0 :
    _global.song_nr++;
    _root.sound_mc.songStarter(songfile[song_nr],
    songname[song_nr]);
    btn_rev.onRelease = function() {
    (song_nr == 0) ? _global.song_nr=songfile.length-1 :
    _global.song_nr--;
    _root.sound_mc.songStarter(songfile[song_nr],
    songname[song_nr]);
    playlist.load("playlist.xml");

  • I can print from my iPad 3 but not from my new iPad mini which has a lower spec. What should I do?

    Question. Why can I print from my iPad 3 but not from my new iPad mini which has a lower spec?

    The "lower specs" have nothing to do at all with why you cannot print. Are you connected to the same Wi-Fi network that the printer & the iPad 3 is on?

  • I can sync from pc to ios but not from ios5 to pc

    Changes from my computer go to the iphone and ipad, but changes to iphone do not appear in Outlook (Outlook 2010 on Windows 7 PC).
    There does not appear to be a manual sync option anywhere, nor can I find a time interval setting or any information about when or how often a sync occurs.
    I can tell you that when I open iCloud on the PC I get an error that the Push service stopped working, but dispite that error I get changes on my devices.

    Once you set your Exchange Calendar as the default here:
    Settings > Mail, Contacts, Calendars > scroll down to Default Calendar > Select your Exchange calendar
    All new events should be created in your Exchange calendar unless manually changed.

  • HT1535 my iphone will not sync to ical. If I make changes to my ical it will update to my iphone, but not vice versa.

    I have had my iphone for several years and I have always been able to plug in my phone to my desktop (mac) and it would sync to itunes.  As of today that will not work anymore. If I make a change in iCal then it will sync onto my iphone, but that doesn't work for me, because I make changes to my iphone and sync it to my computer.  I have gone and read numerous notes online about how to fix this, but feeling pretty frustrated right now. HELP!!

    If you have the MacBook and OS X versions described above, at best you can just marginally host the latest iTunes (11.0.2).  Please check this iTunes Tech Spec and make sure you're able to host it.
    iTunes 11 for Mac - Technical Specifications

  • Auto sync from phone to computer but not computer to phone.

    how do I auto sync music from iphone to computer, but keep from auto syncing from my computer to the phone?  There is not enough memory on my phone to handle everthing on my computer and want to back up purchases made from my phone without having to remember what I bought and manually syncing.  Thanks

    Edit > Preferences > Advanced > Prevent iPods, iPhones, and iPads from syncing automatically.
    Connect device, right-click on it in the side bar and use transfer purchases.
    Edit your sync settings so that a reasonable subset of your library is scheduled to sync to it rather than everything.
    tt2

  • Contacts sync from Google to Mac but not from Mac to Google... only one direction!

    I initially synced google to my mac and it worked fine. I set up the sync in the mail app. Under contacts preferences, I picked the "on My Mac" and clicked sync with google.
    Everything In google continues to sync to my mac.  But if I add something to my contact book on the Imac, it doesn't go in the other direction.
    I tried adding an exchange account... no better.
    I tried adding a new CalDav google account in contacts...  no better.
    I am at my wits end.  Can someone please suggest a solution?
    Thank you.

    I am going to give followup.
    The problem was corruption of my brand new Imac 27.  I went around and around with applecare and they finally figured out that my preferences were corrupted.  Usuallly that can be fixed but they were unable.  Basically, everytime I set the right connection to gmail up, it changed it...
    Finally, I set up a new user account on my mac.  I logged into that user and started all over again.  Now everything works.
    I spent hours and hours on this...  I bought a mac because "It just works"  No more fooling with the registry and spending forever in dread with tech support.   OK, so Mac doesn't have a registry.  It has libraries.  I spent forever fixing it..   Felt just like my Windows experience.  Hope this isn't a harbinger of things to come.

  • Calendar events created on macbook sync on iphone calendar, but not vise-versa.

    Just as question states. When i create an event on my macbook calendar, it ends up on my iphone calendar immediately. however, when i tell siri to put something on my iphone calendar, it doesn't end up on my macbook calendar. Any ideas?

    Thanks.  How do I choose to create events in Google Calendar using the phone calendar?
    <Personal information deleted per TOS>
    Message was edited by: Verizon Moderator

  • Contacts and calendar entries go to ipad from iphone but not vice versa

    i've got the cloud set up on both my new iPad and iPhone--problem is when I make contact or calendar entries on the iPhone, they cloud right over to the iPad, but when I make entries into the iPad, they don't go to the iPhone--I've checked settings on both devices and can't figure out the issue--please help!

    Make sure you are entering the contacts and calendar events on your iCloud account.  On your iPad, check Settings>Mail,Contacts,Calendars>Default Calendar.  Here make sure you have selected an iCloud calendar as your default, and not something else like On My iPad, Google Calendar, and exchange account calendar, etc.
    Then go to Settings>Mail,Contacts,Calendars>Default Account (in the contacts section) and make sure you have selected iCloud as your default.  (If you don't see this settings, this isn't the problem).
    If your settings for your calendar is correct on your iPad and it still won't sync new calendar events to your phone, go to icloud.com from your computer and enter any missing calendar events on your iPad that are not on your calendar on icloud.com.  Once your iCloud calendar is up to date, go to Settings>iCloud, turn Calendars to Off, choose Delete from My iPad when prompted, then after a minute or so turn Calendars back to On to sync your iCloud calendars back to your phone.  Then enter a new event on your iPad and confirm that it syncs to icloud.com now.
    If your settings for your contacts are correct on your iPad and it still won't sync new contacts to your phone, do the same thing for Contacts (add any missing contacts to icloud.com, turn iCloud syncing off, choose Delete from My iPhone, after a minute turn contact syncing back on, try adding a new contacts to confirm that it syncs).

Maybe you are looking for

  • Problems when trying to surf the Internet through a SSL VPN tunnel

    Hi, I have a small/big problem, I have a customer who have the need for the possibility to surf the internet through the SA500W when they are connected through a SSL VPN tunnel in to their network. I am not using a Split Tunnel. What I have seen unti

  • Cine 30" raedon x800xt and an addidtional (different resolution) monitor

    I have a G5 with a 30 inch cine display and a radeon x800xt video card. I would like to get an additional 19 inch monitor to use as a tool pallate. I am not schooled on video cards, but can I add a second monitor of a lower resolution.....(again i am

  • PO Output Message Disappears

    Hi All,   We have some PO's created in 2011,2012,2013,2014 for which the output message has disappeared. Client wants to see to whom from supplier side the purchase order has been sent, so they wants to see the output type in PO now. But we have chec

  • Chapter Markers with Media Encoder.

    Is it possible to export media with the media encoder and include chapter markers that will be picked up by encore? In the past few PP versions I have been using export movie and it imported into Encore with all chapter markers named as I named them

  • How to create buttons

    Hello, I am trying to create a simple flash piece but no luck so far. I'd like to create 4 text buttons. When each button clicked, an image will slide into the scene...That's it. WHen the second button is clicked, a new image will slide in. I dont ca