Sync Contacts Birthday :: month becomes day, vice-versa

Hi,
I'm using iPhone4 with iOS 4.3.3. I'm currently syncing my contacts with Google Contacts.
Time zone is GMT +8:00 Singapore.
What happens when I sync my contacts, the birthdays in Google will change the month to day & vice-versa.
iPhone contact = 1 July 1980
Google contact = 7 Jan 1980
Anyway to solve this?
Thanks.

It is possible to sync to multiple machines for different content. However, the content must be on different tabs.
example: You can sync calendars/contacts at work and music videos at home since they are on the Info and Music/Video tabs respectivly. You can not sync contacts at work and calendars at home since they are on the same tab (Info).
Here is the step by step to set up multiple machine syncing:
1. Select "Disable automatic syncing for all iPhones" under Edit / Preferences / iPhone in the iTunes menu.
2. Uncheck "Automatically sync when this iPhone is connected" in the Summary tab of iTunes.
3. Check "Only sync checked items" in the same tab.
4. On the computer you want to sync contacts and calendar, check the corresponding boxes in the Info tab. UNCHECK everything else in the MUSIC, PHOTOS, PODCASTS and VIDEO tabs.
5. Sync your iPhone with this computer FIRST.
6. On your other computer, follow the same steps above (1, 2 and 3). Then, UNCHECK everything in the INFO tab, and check everything else on the other tabs.
7. When you sync with this second computer, you may get a message that the iPhone has already been synced with another computer, and that the media library will be deleted. Fine. There should be NO media library on the iPhone since you unchecked all the media items on the first computer, right?
8. Sync. Then you can sync on both computers and each will sync what is checked and not overwrite the rest.

Similar Messages

  • My Outlook calendar won't sync with my ipod touch and vice versa.  Wherever I input the info is where it stays. Contacts and notes sync but not calendar.

    My iPod Calendar won't sync with my Outlook Calendar and vice versa.  Wherever I input the information is where it stays.  My contacts and notes sync just fine.  Please help.  Very frustrated.  It used to work just fine.  I just upgraded to iTunes 10.2 version.

    I have the same problem since I updated to iTunes 10.2 Sue (I think). For me this was somewhere in January.
    I wasn't sure iTunes was the issue, until I read your post. I tested syncing a note, and that works fine.
    My 2nd generation Ipod Touch runs on IOS 4.2.1. It won't upgrade to 4.3.
    Possibly the synchonisation between iTunes 10.2 and IOS 4.2.1 doesn't work correctly.
    Has somebody else solved this isue? I use both calendars (on iPod Touch and on PC) for work and private matters.
    Otherwise I have to uninstall iTunes 10.2 and downgrade to 10.2.

  • Why are my contacts birthdays all two days out on my iPhone?

    Why are my contacts birthdays all two days out on my iPhone? They show as correct on my MacBook Pro and my iPad but not my phone. When i try and change them they revert back to being two days out.

    Welcome to the Apple Community Rob.
    Please try the following…
        1.    First check that all your settings are correct, that contact syncing is checked on all devices (system preferences > iCloud on a mac and settings > iCloud on a iPhone, iPad or iPod).
        2.    Make sure the contacts you are adding are added to your 'iCloud' group and not an 'On My Mac', 'On My Phone' or other non iCloud group (you can do this by checking in groups), non iCloud contacts will not sync.
        3.    If you are sure that everything is set up correctly and your contacts are in the iCloud group, you might try unchecking contact syncing in the iCloud settings, restarting your device and then re-enabling contact syncing.

  • How can I sync my iPhone contacts to my Mac and vice-versa, without losing them? Can i do it with iCloud?

    I always add new phone numbers on my iPhone Contacts, while new email addresses are always added on my Mac Contacts. The result is that I dont have my recent email contacts on my phone, while on the Mac I dont have the recent phones.
    I would like to have ONE common list of contacts (same for iPhone & Mac) which will be AUTOMATICALLY updated for both, once I add a new entry.
    I am not sure how to do this with syncing, I am afraid I wll lose my old contacts. Can I do this with iCloud?

    Hello there, Seta.
    You are correct that this can be done with iCloud. The following Knowledge Base article provides some great instruction for syncing contacts:
    iOS: How to transfer or sync content to your computer
    http://support.apple.com/kb/ht1296
    Particularly:
    Contacts, Calendars, Bookmarks, and Notes
    You can sync contacts, calendars, bookmarks, and notes with other applications on your computer. This allows you to keep all your information in sync across multiple computers and iOS devices. The settings for these items are all in the Info tab for your iOS device in iTunes. With your iOS device connected to the computer, select your iOS device. Then click the Info tab.
    For details on syncing content on your iOS device with your computer, click the sections below.
    Contacts
    To sync contacts with your computer, choose "Sync Contacts with" within iTunes for Windows, or "Sync Contacts" in OS X v10.8, or "Sync Address Book Contacts" in OS X v10.7 and earlier.
    You can sync your contacts with:
    Microsoft Outlook 2003, Microsoft Outlook 2007, Microsoft Outlook 2010 (Windows XP, Windows Vista, Windows 7, and Windows 8)
    Windows Address Book (Windows XP)
    Windows Contacts (Windows Vista, Windows 7, and Windows 8)
    Address Book (Mac OS X v10.7 and earlier)
    Contacts (Mac OS X v10.8)
    Microsoft Entourage 2004, Microsoft Entourage 2008, or Microsoft Outlook 2011 for Mac
    Notes:
    When syncing contacts, you can choose to sync all of your contacts or only selected groups. The option to sync selected items may not show up until after the first sync.
    You can select a group of contacts to which all new contacts created on your iOS device will be added.
    Additional options for syncing include syncing your contacts with Yahoo or Gmail/Google Mail. You will need to configure it with the user name and password for your Yahoo or Google account.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • SimpleDateFormat: when day of month becomes day of week

    I have a weird situation where the SimpleDateFormat class seems to interpret the "dd" mark as day of week instead of day of month when I use a certain pattern. The following code demonstrates the problem:
    public class ByteTest {
        public static final String PATTERN = "mm HH dd MM F";
        // public static final String PATTERN = "dd MM yyyy";
        public static void main(String [] args) throws Exception {
            String str = "11 11 08 11 1";
            // String str = "24 11 2004";
            System.out.println(strToDate(str, PATTERN));
        public static Date strToDate(String date, String pattern) throws ParseException {
            SimpleDateFormat formatter = new SimpleDateFormat(pattern);
            formatter.setLenient(false);
            return formatter.parse(date);
    }The result (at least for me) is:
    Exception in thread "main" java.text.ParseException: Unparseable date: "11 11 08 11 1"
    at java.text.DateFormat.parse(DateFormat.java:335)
    at ByteTest.strToDate(ByteTest.java:20)
    at ByteTest.main(ByteTest.java:14)
    When I change "dd" from 08 to 07, I get this:
    Sat Nov 07 11:11:00 EET 1970
    ...and finally, when I change the pattern (done here by uncommenting the commented lines and commenting the ones above them), I get:
    Wed Nov 24 00:00:00 EET 2004
    So, as you can see, for some reason "dd" is interpreted as day of week number in the weirder pattern (which unfortunately we have to use in a pattern matching thing we are using). Any ideas?
    When I comment the line with setLenient(false), it also works fine, but unfortunately we need to use that flag because otherwise users could input weird values for the various fields.
    I tried adding Locale.UK to the parsing method, but that made no difference so clearly my locale (+02:00 GMT) is not at fault.
    I also considered if the day might be out of range since using this pattern we get year 1970, but clocks start counting from 1.1.1970 right? So that doesn't seem a likely cause either. :-/
    The markers for day of week in SimpleDateFormat are E and F; so I guess the question is, when does d become E or F...

    I'm not sure I quite understand what the problem is... the reason why you can't parse that date is that it's invalid, Sunday November 8 on 1970 goes to the second week of the month, so day-of-week-in-month is 2, not 1.. so the string you should pass is "11 11 08 11 2"

  • When my wife changes contacts on her phone it changes contacts on my phone and vice versa

    When my wife or I make changes to our contacts on iphone 4 and 5 it changes the other ones contacts.

    On one of your devices, go to Settings > iCloud.  Look at the account.  Whose Apple ID is there?
    For which ever of you who is the Apple ID account holder, do nothing.
    On the other person's iPhone, go to Settings > iCloud.
    Delete the iCloud account, and choose to 'Keep on iPhone' when prompted.
    Then, use a different Apple ID for iCloud on your device.
    Both of your devices are using the same Apple ID under iCloud (or, alternatively, possibly the same email account on the device) for syncing contacts.  When you do this, the system assumes that the same person is using both devices, and wants to sync Contacts across multiple devices.

  • Transfert des contacts IPHONE vers Outlook et vice versa

    Bonjour
    Je ne sais pas comment faire pour actualiser mes contacts qui sont sur outlook vers mon Iphone 3 et inversement, de l'Iphone vers Outlook.
    Idem pour transférer des photos entre mon PC vers l'Iphone et de l'Iphone vers mon PC?
    Quelqu'un peux t'il l'aider à résoudre ces difficultés.
    Cordialement

    The iPhone supports syncing contacts and calendar events with Outlook 2003 or 2007, which is selected under the Info tab for your iPhone sync preferences with iTunes. Syncing contacts and calendar events direct with Outlook 2003 or 2007 via the iTunes sync process syncs direct with the Outlook address book and calendar - with what is available locally on your computer in the Outlook address book and calendar.

  • Sync contact birthdays to the Calendar?

    Is there a way I can have the birthdates in all my contacts info, sync onto the calendar to display their birthdays?

    Did you import the contacts? If you create the contact from scratch or add a b-day later, it should create the calendar item automatically. If you import contacts, this usually doesn't happen until you edit the contact. There is a utility at rsoutlook.com that will create the b-days following import.
    See http://www.rsoutlook.com/us/prods/prod05.html
    Diane Poremsky [MVP - Outlook]
    Outlook Tips: http://www.outlook-tips.net/
    Outlook & Exchange Solutions Center: http://www.slipstick.com

  • Ical-created entries sync with Treo 700p, but not vice versa

    I had this problem with my Treo 650, too. Every calendar entry I create in ical will sync to my Treo 700p, but everything I create in my Treo does not sync to ical.
    I don't get error messages, but can't figure out why it is only syncing one-way. When I enter the missing appointment on my iMac, it then creates a double entry on my Treo 700p.
    Any idea on what's causing this and how to fix? Is it a problem with the different categories that I have set up in ical? In isync, I indicated that anything created on the Treo should be put in ical under "unfiled."
    Thanks in advance for any advice you can offer.

    The 'unfiled' category on a Palm device is not equivalent to the Unfiled calendar in iCal, into which all Palm-initiated calendar and task entries are placed during synchronization, unless you have selected another calendar into which they are to be placed. iSync and the iSync Palm Conduit do not recognize categories or transfer such labels to records from one device to another.
    If you have made no selection, the Unfiled calendar is selected for you by default, and created if it does not already exist. It is in that calendar alone—or, in your alternative selection—that Palm initiated entries will appear. Subsequent to iSync release 1.5, I found the Unfiled calendar feature so fraught with problems as to be useless.
    For calendar color and category support, contact photograph and category support and the synchronization of extended information for contact, calendar and tasks data, you'll have to use the Missing Sync for Palm OS instead:
    http://www.markspace.com/missingsync_palmos.php

  • Google calendar not syncing anymore with my BB and vice-versa

    Hi everyone!
    A few days ago, I updated my BB curve 9360 to OS 7.1 and earlier today I noticed that my Google calendar was not syncing properly... Well wasn't syncing at all. However I received mails and was able to delete them correctly
    First I noticed, that my email address was not registered as a calendar anymore. Then I tried to send service books which added my Google calendar as default calendar in my BlackBerry (good thing I guess).
    But that's all it did. Now, when I add a new event in Google calendar using my BB, it doesn't sync with the Internet-based calendar and when I add a new event in Google calendar, it does not sync with my BB either (and I have waited more than 30 minutes).
    So here is what I can do to try and solve this problem:
    -Send service books one more time but I don't think it is very useful
    -Delete my email account and setting it up once again
    So I am completely lost because it has always worked until I updated my OS from 7.0 to 7.1. My data plan hasn't changed.
    Thank you for your help
    Regards,

    Hi ThomasDM,
    Welcome to the BlackBerry Support Community.
    To resolve this issue with calendar synchronization, please try forcing a Gmail® synchronization on the BlackBerry® Curve™ 9360 smartphone. Before doing this could you please verify once more that your default calendar on the BlackBerry® Curve™ 9360 smartphone is still listed as your Gmail® account?
    1. Click the Menu key > Options > under Accounts click the Gmail® account > remove the Checkmark from Wireless Synchronization > click the Back menu key and Save
    2. Under Accounts click the Gmail® account > place a Checkmark in the Wireless Synchronization   box > click the Back menu key and Save
    Note: The following prompt will appear " Some of your calendar changes might be lost. Enable wireless Calendar?" Yes or No. Click Yes
    Hope this helps.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Syncing IPhone apps with ITunes or vice versa?

    I have what is probably a very simple question but the more information that I read the more confused I'm getting. I use my IPhone to download apps and then I delete them if I decide I don't want them. I only use ITunes to "backup" my device. I have never downloaded an app to Itunes and I don't plan to; I do everything on the phone itself. It is my understanding that if I sync with Itunes I can first transfer purchases from the phone and then sync the phone with itunes. It is also my understanding that the end result is that the apps on my phone will match the apps in itunes. However, if I deleted 20 apps from my phone but not from Itunes, then syncing is just gonna put them right back on my phone, correct?
    All I want to do is backup my phone in case something happens. I don't care what's accessible to me if I'm on ITunes because I never am. Can I just backup my phone and completely ignore the apps? If I were to lose my phone, I could just login to the app store and re-download them.
    Sorry for the lengthy question but it seems I'm trying to do the opposite of what syncing is intended for. Is syncing synonymous with backing up?
    Help please.

    It is my understanding that if I sync with Itunes I can first transfer purchases from the phone and then sync the phone with itunes.
    Before you connect your phone to your computer, make sure that autosync is disabled in iTunes/Edit/Preferences/Devices.
    Make sure to have at least one contact and event listed on your computer, syncing to an empty address book will delete your contacts.
    Right click on your device and choose "transfer purchases". All bought media and apps from iTunes will be copied to your iTunes library on your computer. Apps you deleted on your phone before will not be transferred, but iTunes will remember that you bought them, in case you want to download them again for free: Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Apps you deleted on the phone will not be synced back unless you select them again in the app pane and sync your phone after that.
    Transferring your apps to your iTunes library is necessary, because the phone is not supposed to be a backup medium. You might consider that when iOS5 and iClound will be introduced, but until then it's a good idea to have a backup of your apps inside your iTunes library.
    To back up manually without syncing do this:
    Right click on your phone in the device list and choose "backup". A manual backup without a sync will be performed. See what's saved inside the backup here: iPhone and iPod touch: About backups

  • DON'T Want to sync contacts

    I have two Macs and an iPhone; the two Mac are one at home and one at work. I want my iPhone and home Mac to sync up and they do nicely. However the problem comes with my work Mac-- the ONLY thing I want to sync to my work mac is my Notes.
    The only way I've been able to do this is via iCloud which works fine for the Notes, however even though I have everything except notes diabled I still have a problem with my home contacts appearing at work and vice versa. I do NOT want this at all; my work and home lives are completely separate and I do not need a work contact accidentally getting emails meant for a home contact and vice versa. However nothing I can find will allow me to fix this.
    How do I get my contacts to stay separate?
    As a clarification, my address books are not syncing but it's the previous recipients list in my Mail apps that are getting synced. If I remove someone from my previous recipients it does it for both home and work, even if I only do it on one.  At this point I'd be willing to clear all previous recipients if that'll help (if you can even do that), but I have a feeling that things would continue to sync after that unless I change something else.

    I apologize for the delay. I did this on my work email and I'll see if my personal email previous recipients start showing up again.
    I've also noticed that spam email that I've never responded to other than to delete is also showing up in my previous recipients list. It's getting massively frustrating.

  • Syncing Contacts in Gmail

    I called into VZW tech support to find out about syncing my contacts in gmail to my Droid X. He kind of shrugged me off and said you don't do anything it just happens automatically.
    I want to know if the contact list in gmail and the DX can communicate. The calendar syncs fine but if i put a new contact on teh phone while I am out I want it to be also in the contacts in my gmail and vice versa if I type a new customer in my laptop I want it to sync to the DX.
    Can anyone tell me what I am doing wroing. I can use the backup assistant but that is only for the phone, I want the gmail contacts and phone to communicate.
    Thank you in advance
    S

    The gmail syncs automatically unless you have turned off syncing.  If you add a new contact to your phone it will show almost simultaneously in your Google contacts, you can verify this by simply opening up your contact and looking all the way at the bottom to see if it is linked with your Google contact

  • Syncing contacts from iPhone to Outlook and vice versa

    I have the new iPhone and I have set up an account in Outlook and have it sync from my MSN Hotmail account. Everything syncs and looks good with the exception of my contacts. I need to know how to put a contact into my phone and have it sync into my Outlook and vice versa. Currently if I put a contract in my phone it does not go to Outlook and if I put a contact in Outlook it does not go to my iPhone.
    Do I have to add a new contact to the MSN hotmail account and then it will sync to my Outlook and then my iPhone? How do I get the contacts to go from my iPhone to my Outlook and then to my Hotmail?
    Same issue with Calendars.
    Thanks!

    The iPhone supports syncing contacts and calendar events with Outlook 2003 or 2007, which is selected under the Info tab for your iPhone sync preferences with iTunes. Syncing contacts and calendar events direct with Outlook 2003 or 2007 via the iTunes sync process syncs direct with the Outlook address book and calendar - with what is available locally on your computer in the Outlook address book and calendar.

  • Outlook 2007 Calendar Appointments have stopped syncing with iPhone 3GS and Vice Versa.

    Outlook 2007 Calendar Appts have stopped syncing with iPhone 3GS and Vice Versa. Only noticed in last month or so. Help required please.
    May have been after an iTunes update.
    Have upgraded to latest version of iTunes and iOS but to no avail.
    Contacts sync OK both ways, it's just Calendar Appointments that don't.
    Any ideas and assistance greatly appreciated.
    Thanks
    Simon

    Hi SPW06,
    If you are having issues with iCloud Calendar not syncing between your Mac and your iPhone, you may find the troubleshooting in the following articles helpful:
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/ts3999
    iCloud: Advanced Calendar and iCal troubleshooting
    http://support.apple.com/kb/TS4337
    Regards,
    - Brenden

Maybe you are looking for

  • I have entererd the wrong E-mail address for my £15iTunes gift card, how can i get my code back so i can put it on the right account?

    i entered the wrong E-mail address when it asked me for my Apple ID, now my card is useless and i dont have the £15 credit i paid for, i was wondering, if i gave you the code, would you be able to trace what address i typed in (Which will be similar

  • New Mail server setup

    Greetings, I need some pro's cons, Ideas taunts and general whaddia thinks. Setting up a new mail server. dpG5 xserve w/ 10,000 rpm drives my thoughts are to take the user information off the machine to a second G5 xserve running as an ODM. I thought

  • Error when adding a WLC to WCS

    When adding a WLC to WCS I get this error: Failed to add device to WCS Reason: COMMON-1: Some unexpected internal error has occured. If the problem persists please report to the Tech Support. WCS 7.0.164.0 was upgraded from 5.2.110.0 because the WLC

  • How to call the XML file as PrivateResourcePath in JSP

    Hi All, I want to call the layer-config.xml values in JSP dropdown list. How to call the XML file as PrivateResourcePath in JSP... please advise me if any solution. locaiton: dist/PORTAL-INF/layer-config.xml   <?xml version="1.0" encoding="utf-8" ?>

  • Planning data sources management

    Hi Everyone I'm using Hyperion Planning 11.1.2.3.0.26. I've faced problem when tried to configure data source for EPM Planning Application. Data source creation wizard is always finish with failed status. Using the same parameters I'm able to create