Birthdays before 1931 are not synchronized

Hi everybody!
When synchronizing my calendar and address book with with the iPod touch I noticed that birthdays before 1931 are not synchronized. The only work-around I could find so far is to manually change the birthday in the address book to a more recent year like 1945, to synch afterwards, and change it back to the original year.
Since it is not unlikely to have persons born before 1931, I guess it is a bug. Does anyone have the same problem?

All the really old people in my family have died, so I didn't notice this one.
Glad it's fixed though - at the rate I'm going, I feel like I was born in 1906.

Similar Messages

  • Mail account folders are not synchronized

    Mail account folders are not synchronized. How do I do this?

    Ok Istart understing.
    There is an issue with icloud Drive, the part called "mail".
    I disabled that part and the rules created by experiment were gone.
    So I restored my synced rules and smart folders plist in the V2 Maildata folder and all were like before.
    So I tried to reactivate the iclodudrive mail part and the problem was again there. The smart folders where gone again and the rules were now mixed with the ones created by experiment.
    So I deactivate icloud mail option on my iphone and my ipad, and redone the restore the synched rules and smart folder.
    After that all seems to be fine.
    Now I have even reactivated the mail icloud option on iphone and ipad.
    I suppose is definitely a bug.
    I remember that my mac popped up some strange message saying there was a problem with icloud drive.
    I will notice if this happen again to see into the log what is telling for real as I suppose that is the cause that messes up my email.

  • Playlists are not synchronized

    Hi everyone
    I have this problem, the standard playlists i made on itunes (but is the same if i create on iphone or aTV) are not synchronized with other device, This don't happening with smart playlist, in this case work well.
    Any solution?
    I'm sorry for bad english, i hope you can understand my problem and help me to solve

    There's one difference between the correctly updated playlists and the ones that aren't: the first ones shows the number of songs in the list after the last song, but the second ones (those that are not fully synchronized) does not shows any number after last song.

  • Bookmarks are not synchronizing.

    I just have to give up and build my own browser.
    Yea bookmarks are not synchronizing. That's basically it. I'm tired of having to wait and hope for updates for things that should be a standard feature. I know there is a lot of magic behind a browser, but all i really need are the bookmarks i can open anywhere.

    Hi ebichuhamster,
    Not a problem. Come to think of it, Xmarks syncs across all browsers, but let's fix sync first. If you open the sync options on each of the devices that are set up on the new sync, please see this to verify each are on the new sync: [[How to update to the new Firefox Sync]], you can make sure "Bookmarks" are checked.
    And if they are select sync now if there was a change. For debugging, it is actually not plural: 'about:sync-log' and these have to be turned on. By default however you should not have to do this and they are turned off as to not take up space, but to enable logs: in 'about:config' change the settings referred to here: [https://wiki.mozilla.org/Services/Sync/Getting_Started#Debugging_Sync]

  • Some notes disappeared from iphone, and others are not synchronizing on ipad, mac, and iphone. What to do?

    Some notes disappeared from iphone, and others are not synchronizing on ipad, mac, and iphone. What to do?

    Hi, MPiaM.  
    Thank you for visiting Apple Support Communities.  
    I would need clarification on if you are experiencing an issue with syncing photos via iTunes or iCloud to provide a better answer.  However, here are a couple troubleshooting articles that cover both scenarios.    
    iTunes: Unable to sync photos
    http://support.apple.com/en-us/TS3697
    Get help using My Photo Stream
    http://support.apple.com/en-us/HT203511
    -Jason H.  

  • Team Collaboration: Change the Task attributes are not synchronized...

    Hello!
    I am sorry for my poor English.
    When you modify in the Team Collaboration the following Task attributes:
    Percentage of completion and Status of implementation,
    the changes are not synchronized with others tools (OBEO, Zimbra, Mozilla Sunbird).
    Change of Status of implementation of synchronized only in Mozilla Sunbird.
    Can anyone give an explanation or solution for this?
    P.S.
    The problem I found recently in 2.0.1.5. (I think that in earlier versions was the same)
    Patch set 2.0.1.6 does not eliminate this defect.

    The answer to my question is,
    I am stupid. I don't pay attention to the details.
    For clarification I did the following...
    class superclass{
      private Integer PIN = new Integer(100);
      // this is the part in my code that I forgot.
      protected Integer getSecretPin(){
        return PIN;
    class sub{
      sub me;
      public sub(){
        me = this;
      // Sneaky stuff
      public Integer getPIN(){
        return
          ((superclass)me).getSecretPin();
    }I was tracking down a bug and was writing some output debugging and THOUGHT that I had stumbled on a security thing. On further inspection into the superclass code I had really accessed a protected method. My compiler ignored the casting.
    Thanks to all for "Looking into it."
    Peace

  • Hi, my iPhone 4S and another one within my family are not synchronizing correctly the adressbook.

    Hi out there, could anybody give me a hint please? Since one week our both iPhones 4S are not getting the changings in the adressbook on our iMAC. Even replacing the complete contacts on the phones does not help. A call to apple support just confirmed my steps before. All software of the latest versions (itunes, iPhone and iMac, but based on OSX 10.6.8). Switching the phones completely of, resetting them and so on, didn´t help either.
    Is there any hidden problem? Does Apple only force me to upgrade to Mountain Lion on my iMAC or to iCloud to overcome that problem without telling? I am using 10 Apple products now on the same ID, including Mac Books, 2 iPads and 2 iPods..... might that be a problem? I asked Apple, but they didn´t confirm.
    Thanks for any hints!
    Johannes

    Hi, When you download, a big app udate like Tom Tom The other Tom Tom maps will be still on iphone until new update is complete That i why you need a lot of space until old updates Delete. So you will need to delete Apps & photos to make space. How much Gig has your iphone 4 s got? Cheers Brian

  • How to find which songs are not synchronized with iPod?

    I have about 5,000 songs in iTunes and the same minus 7 in the iPod.
    How do I find the songs that were not synchronized?
    Thanks,

    Hi, the instruction are difficult to follow, I am not a programmer. Secondly I understand that it finds duplicate songs. My problem that some tongs were not transfered to iPod for some reason. I checked the duplicate songs from the menu and it showed hundreds, because some of them in the Best of or live Albums.
    I think iTunes should have an option finding non synced songs.
    Thank you,

  • Synchronized {blocks} are not synchronized ?

    Hi
    I have a stored procedure containing a method with a synchronized block :
    public class MyClass {
    private static Connection conn;
    public static void insert(String stringData) {
    synchronized (conn) {
    //LOGGING
    Date startTime = new java.util.Date();
    ... some code ...
    //LOGGING
    Date stopTime = new java.util.Date();
    }I suppose that when a lot of concurrent users wil use the stored procedure, the synchronized block of code will not be executed at the same time. But when I do that my log dates are overcrossing, that means concurrent execution.
    How can I make this code really synchronized ??
    thanks,
    Xavier
    null

    radiatejava wrote:
    You mentioned there could be some thread caching - can you pls explain why/how ? Since the threads are not accessing the variable directly and instead they are querying the object using a method, why would the method return some old value ? I understand in case of direct access to the variable, a thread can cache the variable. Do you mean to say that threads will also cache the methods ? Otherwise, how is it possible to return the stale value. I am not expecting a blind answer like XClass is not thread safe (I too agree to this) but some explanation on how caching is being done with method calls too.You are thinking of it in a wrong way. It doesn't matter if methods are cached or not, methods are just static code blocks. The important thing to understand is that all data can be cached unless it is volatile or synchronized. The integer "inside" XClass is data, and that data might get cached, so e.g. getVar can return the cached value. It doesn't need to read the value from main memory. The same applies to setVar, it doesn't need to update the value in main memory.

  • Old conversations are not synchronized with new MacBook Pro

    Hello!
    Yesterday I purchased the newest Retina MacBook Pro (medio 2014), upgraded to Yosemite and started installing and setting up my applications. Sadly, I seem to have a problem with iMessage, since it's not synchronizing my messages properly.
    Up until now I've been using an iPhone 3GS, a MBP (medio 2009 w. Yosemite) and an iMac (late 2012 w. Yosemite), and everything seems to work fine, since all the devices share and can access the same conversation history. However, when I started setting up iMessage on my newly purchased RMBP, the conversation history with each of my contacts isn't synchronized even though I'm able to send messages. I tried logging in/out, delete/add my iCloud account, but nothing seems to work.
    I assume all of my messages are synchronized with iCloud. Of course it would make sense if it took some time for Apple to recognize and synchronize the messages, but it's been 18 hours since I started messing with iMessage. Am I being to impatient?
    Does anybody know how to solve this problem?
    Thanks in advance.
    Best regards,
    Theis

    Hi,
    It is a yes, no and maybe answer.
    You have to grab several items form the old Mac and place them in the correct places on the new Mac.
    As you seem to be using Yosemite all round that task is easier (that is a relative easier),
    See this pic
    Note the Path Bar across the bottom that list where this Archive folder is.
    It can be shortened to ~/Library/Containers/com.apple.iChat/Data/Library/Archive
    (you can type or Paste this in the Dialogue box in the Finder > Go Menu > Go to Folder)
    In the Messages folder is also an Alias that links to the Attachments folder.  (I will come to that later)
    You also need this spot.
    This is Still in ~/Library but not in the Containers bit but just the Messages folder.
    It has the Attachments folder and the various chat.db items.
    Move the Contents of the Attachments from one computer to the new one.
    Move ALL the chat.db items (I must admit I am not sure about leaving the incompatible ones behind).
    Make an Alias of the Attachments folder and drag it to it's proper position (in the Containers/../../Library/Messages folder)  (replace the one that is there so it is linked to the moved stuff).
    Now go back to the Archive folder.  If you are using the Show Path Bar (view Menu of Finder) then you can Right Click the folder icons
    Select the Archive Folder and then Get Info on the right click.
    At the Bottom highlight your name in the list for Permissions.
    You Should have Read and Write Permissions.
    If you now use the Gogwheel type icon you can see if you Own the Folder.
    If it is greyed out like this one then you Own it.
    However you are most likely to have to "Apply to Enclosed" items as you have just moved things.
    Repeat for the Chat.db and Attachments (~/Library/Messages folder).
    And then the Alias just to be sure.
    There is not an Export option that would be simpler.
    9:12 pm      Wednesday; November 5, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • HT1296 when connecting my Ipad on mac mini and launching Itunes, the "INFO" is not displayed and my calendar and contacts are not synchronized

    when connecting my Ipad on mac mini and launching Itunes, the "INFO" is not displayed and my calendar and contacts are not synchronized

    Thanks for your advice. However my private informations have nothing to do on a wandering cloud that floats on high over US vales and hills ( and credit to William WORDSWORTH for his poetry)

  • SharePoint system generated IDs are not synchronous

    Hi,
    We've published InfoPath forms in document library 'A' and used default "ID" field of SharePoint to generate Request IDs for tickets.
    As we add consequent documents(items) in library 'A', 'ID' is getting incremented properly i.e. 801, 802, 803. But sometimes, consequetive IDs generated as 815, 820, 824 even if the items/documents between them are not deleted.
    Can anyone help me for the reason behind this.
    Thanks,
    Kunal

    Hello Kunal,
    I am just thinking if this issue is related to multiple instances of form. Just try to add one more text field in form and populate item id on form load in that field. Then use this field in your rule instead of "max(i@d)+1".
    Just try this and see the result
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • PS Forecast Dates are not synchronized when Cproject Dates are updated

    hello Experts,
    I did all necessay customizing for DFM synchonization but when i modify date in Cproject and i check the project defintion in "CJ20N" , dates are not updated.
    Do you have any idea why? Project defintion has a statut "PREL".
    Thank you in advance,
    Amal

    Is there a page online demonstrating this problem? I think without taking a look, we might speculate wildly and waste a lot of your time...
    One thing that turned on in Firefox 29 is support for &lt;input type="number">. If any of your date fields were using type="number" as a way to be scripted or styled specially, that may no longer work correctly in Firefox 29 and higher.
    This article might be useful:
    https://developer.mozilla.org/Firefox/Releases/29/Site_Compatibility

  • Ebooks are not synchronized

    Hello,
    I have bought a new ePUB via iPAD, but is not synchronized and copied back to my iMAC. Any idea?
    Best, Helga

    You should be able to copy the contents of the iBooks app to your computer's iTunes via File > Transfer Purchases (File > Devices > Transfer Purchases if you have iTunes 11 on your Mac) - they should copy over to the Books section of your iTunes library.

  • Birthdays of elderly persons are not synchronized?

    Synchronizing birthdays taken from the adressbook to iCal works fine. They are usually also synchronized to the iPod Touch. But one more thing makes me crazy until I seem to have find out the reason. Birthdays of people of about age 75 or older seems not to be synchronized. Their entry is simply missing. Stupid, if I already missed my mother's birthday. Have other people have this "feature" as well?

    I've noticed this too. Fortunately, I remember my parents birthdays without having to be reminded, so I haven't missed one because of it.
    Submit feedback to Apple about it here: http://www.apple.com/feedback/ipodtouch.html

Maybe you are looking for

  • IPod Nano 7th Generation Apple Logo staying on screen

    Hey guys, I had just bought myself this iPod today and had it for an hour listening to music and when i put it to sleep could not get it to wake up again. I tried to reset it and the Apple Logo showed up but stayed like this and no matter how many bu

  • Dual Powermac G5 vs Mac mini Intel Duo

    I'm sure this has been discussed already, but I would some more input on this. I am looking to upgrade to a faster Mac. I am currently running a G4 1.25 DP with 2Gigs of RAM. It's a fine machine, but I would like to take advantage of some of Apple's

  • Cost Centre Standard Report

    Dear All Is there any standard report to check the Materials procured and Material Issues to cost center. Regards JK

  • Need to divide my frame into panels

    hey all, I want to create two panels in the main frame i tried to do but, the two panels created with the same size, however i want one of them is norrow in in the buttom of the frame, how can i make the panels with different sizes?? thanx

  • JSP files

    I recently found a file in my "My Documents" directory with a ".JSP" extension. I have no idea from whence it came. I barely have a handle on J2SE and have no idea how to deal with JSP files. Can anyone tell me how to open that file to see what it is