IOS4 update issue - Date showing year 2523 BE (unable to change to 2010)

I just updated my iphone 3GS last night and noticed the year date as being 2523 BE and am unable to change it back to 2010. I can change it back and forth a few years from 2523 BE but not able to roll down to 2010.
No other issues seen, iOS4.0 update wen through without any problems.
Anyone else seeing this or have any ideas whats causing this?
Cheers
ozgazl

Solved: I found out my calendar setting was set to Buddhist hence the '2553 BE' date.
I reverted back to Gregorian and all ok now. My phone hasnt gone dead after this either. Weird hey.
Topic closed.

Similar Messages

  • Firefox 3.6.10 update does not show any release notes. What changed?

    Firefox automatically updated to 3.6.10 and brought me to a very general "what's new" page where no information about this update could be found.

    In the Help menu select "Release Notes"

  • I have a new IPAD4 which has synced pictures i selected but not music or films i selected from itunes library? I have had an account for years and never had issues syncing with iphone or ipod? when i attempt ipad the data shows and it cycles but nothing?

    show the data shows whe i selet for sync (i have ticked sync only ticked icon) and selected two playlists - the data usage shows an extra 3.2 gb off my 32g ipad and the movies show up purple on the data usage bar, i press apply / sync it takes 20mins to go through 5 stages - never once do i see a song title or number in the update display. then when it finishes the data usage bar goes back to the lower amount before i tried to add the music and movies to my ipad?? The only thing that i have managed to move if pictures??
    Im confused, ive always got on fine with moving, updating and syncing my iphone, ipod touch, have done this the same way but NO music or films
    when i go through the summary section it says i have selected 757 songs (off two playlists) and i movie (from a digital copy via itunes), they show in usage bar b4 sync but then after sync nothing! i have tried both wi fi sync and normal, i have the lastest updates and CANT FIGURE THIS OUT
    When i set up the ipad out the box the other day it asked whether i wanted a NEW INSTALL or RESTORE FROM ICLOUD BACKUP (presumbly off iphone), I choose restore, it then downloaded all the apps and web history/bookmarks etc, although it took about 8 hours to do it which i thought was odd?!
    Ive spent £500 on this and if i cant put my msuc or movies on it that makes it a very exspensive web browser, APPLE this should be easier .......! please help - im no techno noob beither grand master, just your average user so im sure people might know what to do... i freakin hope so!

    ps when syncing it jumps through steps 1 - 4 real fast, i seem to remeber iphone showing the number of tracks transferring and names, but i see nothing? then it sits on 5 saying "waiting for changes to be applied"

  • "Updated on" date on the first screen of Mailboxes always shows as 11/11/2014

    The "Updated on" date on the first screen of Mailboxes always shows as 11/11/2014, yet the mailboxes are being up-dated correctly.
    My wife has the same 4S but her "updated on" shows as "Updated Just Now".
    Any idea why mine isn't?

    Hi there Touretan,
    If the mail is still coming in and sending as expected but the date doesnt update, I would quit the Mail app on the phone first:
    iOS: Force an app to close
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    When you have done that restart the device and test the issue again:
    iOS: Turning off and on (restarting) and resetting
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Out-of-date package not been updated in almost a year

    The question I have is: what should I do when I see a package that has not been updated in almost a year (after its flag-out-of-date)? I can't seem to find any info on how such a situation is handled. I can't reflag and sending an email to the maintainer seems intrusive and/or rude. There may be an underlying reason to not upgrade, or the flag was lost in time and forgotten.
    The package I have in mind is opencl-headers. It got stuck on v1.1, and never updated to v1.2, and now still not to v2.0. There is an AUR package for the 1.2 headers, but that just seems silly to have around.
    Thanks for any input!

    I see, there is a backstory to all this. It seems though momentum was lost when ocl-icd devs did not respond to the email requesting info. The last commit to their repo was for 2.0 support, back in 2013. It seems abandoned since then, maybe a new spark of activity will come when a new OpenCL spec comes out.
    The current situation is quite terrible really: libcl in the repos is from the NVIDIA package, so this means a hard dependency on a vendor not willing to follow the latest version of the spec. Way back when it was probably a sane choice, but now, as the email linnked by Allan shows, the situation is different.
    Either choice, be it ocl-icd or Khronos, will improve the situation (OpenCL version and license-wise). Currently ocl-icd has one advantage (detailed in the POCL developer docs): choosing the icd at runtime.
    As any CUDA or AMDAPP or Intel OpenCL package will include their libOpenCL, and it can be selected by LD_LIBRARY_PATH if required, I hope a sane libOpenCL package will soon make it into the repo.
    As for backward compatibility: I believe the headers are backwards compatible, and it is up to the applications to verify the device they want to use supports the functionality they use. As for forward compatibility: if one solution fails and an alternative is better: just replace the package providing the ICD library by a better one.
    Note that both the OpenCL headers and the ICD (libOpenCL) are designed to be platform-agnostic and should in principle work with all versions of the spec and devices, limited only by the device capabilities as reported through OpenCL functions. Currently, libcl and the old opencl-headers version is the limiting factor, which is Terrible®, given the (open source) alternatives.

  • Show Current Date in Year Format (and now - 1, etc.)

    Our form has some column headers that need to change each year, the headings are current year (2010) + previous 3 years.  Am trying to programatically add the titles to eliminate modifying the form just to change the year, but not finding how to accomplish, and was checking out some date samples found, but no success yet.  My question is 2 part - how/where do I put code, I don't need the user to enter anything, just want a column header.  This example below is where I copied the idea from a sample and tried to adjust, it's on the calculate event of a date/time field, and I get an error message that says 'the display pattern "date-{MM/DD]" is incompatible with the object's data format.  Define a compatible Display pattern.  This display pattern error is the 2nd part of the question.  How do I display only the 4 digit year?
    year1.rawValue
    = num2date(date(), "YYYY")
    How do I accomplish this - am newbie on this!  Thank you very much!

A: Show Current Date in Year Format (and now - 1, etc.)

1) I typically use a hidden field to capture the current date on the layout:ready event.
2) If year1 is a date object  your script is valid but you are probably missing the display pattern date{YYYY} on year1.
If year1 is a text field you could could capture current year in a hidden field as
// form1.page1.currentYear::ready:layout - (FormCalc, client)
$.rawValue = Num2Date(Date(), "YYYY")
where currentYear has the display pattern date{YYYY} and add
this.rawValue = form1.page1.currentYear.rawValue;
to the calculate event of year1.
Steve

1) I typically use a hidden field to capture the current date on the layout:ready event.
2) If year1 is a date object  your script is valid but you are probably missing the display pattern date{YYYY} on year1.
If year1 is a text field you could could capture current year in a hidden field as
// form1.page1.currentYear::ready:layout - (FormCalc, client)
$.rawValue = Num2Date(Date(), "YYYY")
where currentYear has the display pattern date{YYYY} and add
this.rawValue = form1.page1.currentYear.rawValue;
to the calculate event of year1.
Steve

  • Password change issue when updating user data in SAP ABAP system

    Hi Guru's,
    One of my reconciliation tasks part of the reconciliation job I've created is doing some strange password updates.
    As you can see below the task selects all users part of my identity store that are part of the account attribute of the particular ABAP system.
    Once these users are selected the task updates different data like username, validto, ... but the task is updating a lot of other things that are not part of the destination tab. What is causing the biggest issue is the password fields that are updated in the ABAP system like, password, productive password, ...
    Can you please advise if I missed something and how to solve?
    Thanks a lot,
    Laurent

    Hello Steffi,
    Yes in the ABAP systems they have the same timestamp. No other jobs are running at the same time.
    It is only happening to a few users depending on the ABAP system. On some ABAP systems there are only a few users for which the PW is reset and other systems 300.
    Example below of a system where I updated all user. In my pass only the following attributes should have been pushed thru to the ABAP system.
    However the valid from, accounting number and password have been updated as well.
    Thx,
    Laurent

  • I updated to ios8 and tried to use Health Application. In Sources I get a message that other applications will show up on the list as they request permission to update your data. How does it happen? No apps are listed on my Sources section

    I updated to ios8 and tried to use Health Application. In Sources I get a message that other applications will show up on the list as they request permission to update your data. How does it happen? No apps are listed on my Sources section

    I have an answer to my question. There is a bug in IOS8 that prevents third party applications to talk to the Health Application. Apple is trying to fix it ASAP

  • SIS Report- Old Data update Issue

    Hi All,
    The relevant configuration has been done for activating SIS report. Using the T-Code: OLI7,OLI8,OLI9, I have updated the data for the infostructure: S001 and copied the same to OLIX, but still the report shows only New document value in MC+E report.
    I followed the below link, but eventhough the old document data is not showing in the report.
    http://scn.sap.com/docs/DOC-29547
    Please anyone help me to get the old data in the MC+E,MCTA report.
    Regards,
    Mythily

    Hi All,
    The relevant configuration has been done for activating SIS report. Using the T-Code: OLI7,OLI8,OLI9, I have updated the data for the infostructure: S001 and copied the same to OLIX, but still the report shows only New document value in MC+E report.
    I followed the below link, but eventhough the old document data is not showing in the report.
    http://scn.sap.com/docs/DOC-29547
    Please anyone help me to get the old data in the MC+E,MCTA report.
    Regards,
    Mythily

  • DW PHP date update issue?

    When I use the DW8 PHP UPDATE behavior, I get an error reported back from the web server when the date value in the form is MM/DD/YYYY .. but if I change it to YYYY-MM-DD then it updates fine. What can I do to assure that we can use the user friendly date format and it doesn't freak out???

    Create separate fields in the update form for the month, date, and year. Use SQL to extract the values separately using MySQL date and time functions. When the form is submitted, join the separate values together before inserting them in the database.

  • How do I show "year" in date received or sent columns?

    +My constant struggle with Mail goes on but I am not giving up yet.+
    Mail shows me month, day, hour and minute. But not the year of messages received or sent.
    When I upgraded to Snow Leopard and switched from using Entourage to Mail, I imported all my mail and folders. That part worked ok. However, none of those messages - or current new ones, show the year of the message. Since I have a lot of messages stored in folders that span a few years this is very confusing.
    I have searched Mail Help; I tried every Preference option I thought made any sense, but I cannot find anything that allows me to show Year in the Date Received or Sent columns.
    Please, can anyone point me in the right direction?

    Hello.
    What do you mean "see if it is displaying the date?"
    That pull down menu offers four options: none, default, all or custom. There's nothing there pertaining to date.
    In any case, I have tried all four and, of course, none make the date appear in Received or Sent columns. I say, of course, because this drop down is about Headers. I don't want to and shouldn't have to look into each message to see the date. The date - the year as well as month, day, etc., should show in the inbox columns.
    This is seriously nuts that it doesn't and that I cannot find a way to make it do so.

  • Original date showing is wrong by two years!

    Hi,
    I seem to have a big (and very weird) problem with dates in Lightroom. This relates - for the moment at least - to images dating back ten years, to when I had my first digital camera, a Nikon D100.
    See attached image. My belief is that the photo in question, one of many, was taken at around 2pm on the afternoon of 17th April 2004. Note the following from the image (EXIF data):
    - The "date/time original" shows 17/04/2002 13:58:48
    - The "date/time digitized" shows 17/04/2004 23:15:29
    - The "date/time" shows 17/04/2004 23:24:17
    The same image in Windows explorer (see second image) shows:
    > Date 17/04/2004 23:15
    > Date Taken 17/04/2004 23:15
    > Date Imported 17/04/2004 22:24
    Given the subject matter of the image, it is 100% certain this image was in fact taken in April 2004.
    How can it be, then, that the "original" shows a date two years earlier? Why would Lightroom use this field (the ONLY one showing 2002 when every other shows 2004)? And why does Explorer correctly show the date but Lightroom does not - surely if anything one might expect the opposite?
    This is urgently needed to be resolved as I am making a photo book for my wife's 40th and, as it turns out, I am putting all the photos in all the wrong years!
    Thanks in advance,
    Alastair
    [FOOTNOTE: Forum post editor would not allow me to insert images but hope you can figure it out from the text]

    Thanks
    So, getting weirder, I now discover that in some photo sequences the date is right in some and wrong in others. Do I need to conclude that my D100 was faulty or doing something mad? It just seems so random...
    The original troublesome image was taken (and processed) in 2004. Another set of related images, probably taken on another date later in 2004, show all three EXIF dates above as 2002.
    The reason for being certain these are 2004 images is they relate to my wife's "bachelorette" flat in South London which she found in April 2004 and bought in July the same year.
    Is there literally no way I can determine what the real date is / was / should have been?
    Thanks again

  • HT4623 am update my iphone 3gs ios4.1 to ios 6.0.1 using itunes when update comleted itunes show a message Were sorry, we are unable to continue with your activation at this time. Please try again later, or contact customer care! pls help me pls

    am update my iphone 3gs ios4.1 to ios 6.0.1 using itunes when update comleted itunes show a message Were sorry, we are unable to continue with your activation at this time. Please try again later, or contact customer care! pls help me pls

    Generally this is a sign that the iPhone had previously been
    hacked/modified/jailbroken and the update relocked it to the
    original wireless carrier. If this is the case, only that wireless
    carrier can unlock your iPhone. You must contact them to see
    if they offer unlocking and if you qualify.
    Where did you acquire this iPhone?
    What wireless carrier did you use before this problem?
    Does the app Cydia appear on your iPhone?
    What does it say when you look at Settings=>General=>
    About=>Carrier?

  • Client computer showing a restart notice prior to the software updates deadline date

    Does the SCCM 2012 client send notices to the client computer prior to the software update deadline date, but not actually restart the computer until the deadline has been reached?
    I am asking because I see that there are restart notices in my System log when filtering Event IDs 1074, 6006, and 6005, but when I filter Event ID 12116 on the Application log, it only shows one restart on the day of the deadline being initiated by SCCM. 
    I am assuming the SCCM client will generate a computer restart notice after a software update deadline is set and the client systems receive the policies from the Site Server, but not actually restart until the deadline, but I am just speculating. 
    If someone can offer an explanation here, I would greatly appreciate it. 
    Thank you very much

    On the day that I deployed my SUG, here is what the Event Viewer shows for the following Event IDs in the System Log:
    System Log Events
    Event ID 1074
    The process C:\Windows\system32\winlogon.exe (Computer1) has initiated the restart of computer Computer1 on behalf of user MyDomain\User1 for the following reason: No title for this reason could be found
     Reason Code: 0x500ff
     Shutdown Type: restart
     Comment: 
    Event ID 6005
    The Event log service was started.
    Event ID 6006
    The Event log service was stopped.
    On the actual deadline day, here is what the Event Viewer shows for my Application Log, but it does not show any previous restarts like the System Log shows:
    Application Log Event
    Event ID 12116
    Configuration Manager restarted the computer to complete installation of software or software updates.

  • TS2774 hi i have done the settings that mentioned in apple support threads but it wont work for me i am using BSNL cellone SIM and activated 3G too but unfortunately internet is not connecting but my facebook is updated and also showing the data statistic

    hi i have done the settings that mentioned in apple support threads but it wont work for me i am using BSNL cellone SIM and activated 3G too but unfortunately internet is not connecting but my facebook is updated and also showing the data statistics

    They are not a supported carrier. You'll have to take it up with them.

  • Maybe you are looking for

    • How can i transfer my main HD to a new one?

      How can i transfer my main HD to a new one?

    • Dell Inspiron 1521 suspend/hibernate not working

      Hi all, new Arch user here. I've tried working through the Acpid and Pm-utils wiki articles, but it's all just too confusing. I installed both the programs, and when I run either pm-suspend or pm-hibernate as root, All I get is my screen goes black.

    • SOAP senario

      Hi Experts, My scenario is SAP R/3 is triggering an FM and receiver is SOAP adapeter(Sync interface) and my target url is http://xxx and scenario is working fine and my new requirement is to change target url from  http to https  in this case what I

    • Jwsdp_1.2 - build.properties not accessible

      Hello, since I've updated my jwsdp-version (to jwsdp_1.2), I cannot use ant to install my services, because the manager.username and manager.password in build.xml aren't accessible for ant, although a build.properties files exists in my home director

    • Comcast might possibly be the dumbest company I've ever dealt with.

      After telling me for over a month that my address was serviceable and me purchasing a 130$ cable/modem (that I now can't return), I was told by Comcast that my house was unserviceable and that if I wanted to have their services I would have to pay 73