Daylight Savings issues on iCal

My iCal is exactly an hour behind the posted system time on the device.  I live in Denver and have checked my settings and nothing seems to be weird...  I am confused, if the phone knows its currently 11:21am, why doesn't iCal use the sy

I've noticed something similar. My system clock is correct, and alarms seem to be going off at the right time. The little time marker (red bulb with line) is still an hour fast. This happens only with iCal. My other calendar apps are fine. Tried messing with manual and auto time set, plus location services, reboot, etc. Only looked at my iPhone and iPad. Not checked my MacBook Pro, yet. Both iOS devices running 5.0.

Similar Messages

  • Daylight Savings Issue [Melbourne, Aust] on iPhone 6Plus

    Has anyone had issues with your clock not changing for daylight savings [Melbourne, Aust] on your iPhone 6Plus?
    I am running on IOS 8.0.2 - daylight savings came into effect Sunday morning, Oct 5 - my Date & Time is set to Auto.
    When I checked it was defaulted to Brisbane - if I switch auto off the default changes to Melbourne. So I reset to auto > on - again defaulted to Brisbane.
    I switched auto back to off, turned off iPhone to ensure it sets.
    Switched on iPhone - Melbourne time ..... went into settings - changed Set Automatically to 'On' - and again defaulted to Brisbane time.
    I've had to switch Set Automatically to Off to overcome this issue.
    My son has iPhone 6Plus but has not updated to v8.0.2 and his clock automatically updated.
    TIA

    This seems like it might be similar to the problem I was having. Please see the following thread for the solution:
    http://discussions.apple.com/thread.jspa?threadID=1791145&tstart=0
    It worked for me, give it a shot.

  • Calendar All Day Events, Calculated Columns, Timezone and DayLight Savings - Issues

    Hi
    I have a calendar where I am trying to display in one column using a calculated field (TitleWithTimes):
    Start time (only display time) - End Time (only display time) : Title i.e. 00:00 - 23:59 : Test Event
    So I add an all day event to the calendar for this month (February), it appears correctly:
    i.e. 00:00 - 23:59 : Test Event 1
    I am based in the UK so my time zone is currently GMT/UTC.
    However if I add any all day events to the calendar in April when the time zone switches to GMT+1, the start and end times appear incorrect.
    i.e 01:00 - 00:59 : Test Event 2
    Field: TitleWithTimes
    =TEXT([Start Time],"hh:mm")&" - "&TEXT([End Time],"hh:mm")&" : "&Title
    This issue only occurs with ALL Day Events when the events are scheduled for a in the period of the year where the Time Zone becomes GMT + 1. My regional settings everywhere in SharePoint are correct as are all the SharePoint servers.
    I have done lots of searching and troubleshooting to try and resolve this issue but it appears nobody has found a reliable fix for this issue with calculated fields, all day events and time zones? Does anyone have any ideas of workarounds?
    Thanks

    Hi,
    I understand that you had issues about the calculated field in calendar.
    This is a reproducible issue, when creating an all day event, the calculate column based on the Start Time/End Time is different from the original column value. The date is stored in SQL in GMT time and is displayed in SP in the correct time in lists. So
    returning the start time in a calculated column for an all day event returns the start time in GMT time, which is not the current time most likely.
    As a workaround, you can regenerate the calculate column to add one day/minus one day based on whether the event is an all day event, or create a workflow to copy the start time column to your created date/time column.
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/27ab0bb0-245b-46ca-9f87-c0eb043653ef/date-formatting-in-calendars-returns-wrong-day?forum=sharepointgeneral
    Thanks,
    Linda Li
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Daylight Savings Issues after SP1 update

    Has anyone had issues with WebAccess showing times an hour off (because of DST) after updating to 12.0.1?
    After installing the update, all emails/appointments in WebAccess were an hour earlier. That said, times on the software clients and mobile devices (datasync) displayed correctly. The domains and post offices are set to Sydney (GMT+10).
    We ended up downgrading WebAccess to 12.0.0 for the time being. Ironically, we were hoping the update would solve a much smaller DST related glitch!
    Any feedback would be greatly appreciated!
    Cheers,
    John

    jwtaylor wrote:
    >
    > Has anyone had issues with WebAccess showing times an hour off
    > (because of DST) after updating to 12.0.1?
    Yes, I'd suggest opening a SR and reference bug 787497. The more of us
    that log SRs, hopefully the quicker it will get addressed.

  • Calculating time for different timezone, problems with daylight savings?

    Hi all,
    I try to convert my locale time to a different timezone (like a world clock does). This worked until Europe got "summer time". Then my time calculation went wrong. I just paste the following coding to give you a quick reproducable code.
    I did a lot of googleing but nothing found so far. Also search here in the forum didn't help me solving it. So now I created a post on my own.
    The output of the Java programm is the following (without the colored comments). I just entered these comments to show you where the calculation is right and where it goes wrong.
    I have absolutely now idea about where the chase the error. I am only guessing with "daylight savings issue".
    Hopefully anybody has a good idea.
    Thanks in advance
    John
    Europe/London {color:#339966} *(correct calculation!)*{color}
    daylight shift in millis: 3600000
    Is in daylight savings: true
    19.04.2010 11:28:53
    *Europe/Berlin {color:#339966}(correct calculation){color}*
    daylight shift in millis: 3600000
    Is in daylight savings: true
    19.04.2010 12:28:53
    Australia/Sydney{color:#ff0000} (wrong calculation, shoul 1 hour){color}
    daylight shift in millis: 3600000
    Is in daylight savings: false
    *19.04.2010 20:28:53*
    America/New_York {color:#339966}(correct calculation){color}
    daylight shift in millis: 3600000
    Is in daylight savings: true
    19.04.2010 06:28:53
    Asia/Bangkok {color:#ff0000}(wrong calculation, shoud 1 hour){color}
    daylight shift in millis: 0
    Is in daylight savings: false
    19.04.2010 17:28:53
    Asia/Hong_Kong {color:#339966}(correct calculation){color}
    daylight shift in millis: 0
    Is in daylight savings: false
    19.04.2010 18:28:53
    package test.timezone;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.GregorianCalendar;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.TimeZone;
    public class TZCalc {
    public static void main(String[] args) {
    List<TimeZone> list = new LinkedList<TimeZone>();
    list.add(TimeZone.getTimeZone("Europe/London"));
    list.add(TimeZone.getTimeZone("Europe/Berlin"));
    list.add(TimeZone.getTimeZone("Australia/Sydney"));
    list.add(TimeZone.getTimeZone("America/New_York"));
    list.add(TimeZone.getTimeZone("Asia/Bangkok"));
    list.add(TimeZone.getTimeZone("Asia/Hong_Kong"));
    for (TimeZone tz : list) {
    Calendar cal = new GregorianCalendar(tz);
    SimpleDateFormat formatter = (SimpleDateFormat) DateFormat
    .getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM);
    formatter.setTimeZone(tz);
    System.out.println("\n"  +tz.getID());
    System.out.println("daylight shift in millis: "  tz.getDSTSavings());
    System.out.println("Is in daylight savings: "  tz.inDaylightTime(cal.getTime()));
    System.out.println(formatter.format(cal.getTime()));
    }Edited by: jbegham on Apr 19, 2010 3:46 AM
    Edited by: jbegham on Apr 19, 2010 3:47 AM

    You should not set the time zone on the calendar since you want the calendar based on UTC.
            List<TimeZone> list = new LinkedList<TimeZone>();
            list.add(TimeZone.getTimeZone("Europe/London"));
            list.add(TimeZone.getTimeZone("Europe/Berlin"));
            list.add(TimeZone.getTimeZone("Australia/Sydney"));
            list.add(TimeZone.getTimeZone("America/New_York"));
            list.add(TimeZone.getTimeZone("Asia/Bangkok"));
            list.add(TimeZone.getTimeZone("Asia/Hong_Kong"));
            Calendar cal = new GregorianCalendar(); // Regardless of your timezone this holds the number of milliseconds since 1/1/1970 UTC.
            for (TimeZone tz : list)
                SimpleDateFormat formatter = (SimpleDateFormat) DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM);
                formatter.setTimeZone(tz);
                System.out.println("\n" + tz.getID());
                System.out.println("daylight shift in millis: " + tz.getDSTSavings());
                System.out.println("Is in daylight savings: " + tz.inDaylightTime(cal.getTime()));
                System.out.println(formatter.format(cal.getTime()));
            } I have no idea whether or not this then gives the results you expect.

  • Daylight savings all-day events issues in updated iCal for iPad

    After purchasing new MBP, Genius Bar told me to update to new iCal. I have noticed that any all-day events taking place on the date that daylight savings begins (3/13/11 i.e.) lasts on iPad's iCal for two days. When I attempt to edit, event still displays for two days. Guessing it is because that day technically lasts for only 23 hours. Genius Bar consultant had no suggestions for a remedy. This error appears for 2011, 2012, 2013, 2014 daylight savings beginning dates. The error doesn't seem to be a problem for the MBP or my iPhone.

    I've experienced the same problem.  I set up a recurring one day event on the first of each month - come April 1 in 2012 the event is spread over 2 days (the end of daylight savings time in Australia) from April onwards.  I can muck around with the event and have it set at one day from April1 onwards in 2012 but there's a recurring event bug related to daylight savings.  I wonder if any alarms people have set for that day will again experience the problems from the past?

  • ICal issues with Daylight Savings Time

    After Daylight Savings Time some of my appointment in iCal have automatically changed to one hour later. This did it happen to all of them which makes it quite confusing. I think that it was mostly the recurring ones. Any ideas on how to fix this?  I don't recall this happening in previous years. A couple things that may be in play. My iCal is linked to a google calendar but I make the vast majority of my appointments through iCal. I have noticed that some appointments show up in CEntral Time and others in GMT. Could this be a factor. How do I get that timing consistent?  Thanks for your help.

    Yes we did power down and then back up with all three.  We also called each phone to see if that would help.  I just had a thought ... would removing the battery help?  I've had verizon phones for many years and I"ve never had this happen.

  • Outlook 2011 for mac daylight savings time issue

    Hello,
    I have a problem in my company where after daylight savings time meetings are shown an hour off in the calendar, but in the body of the meeting the time seems fine. The real problem is when after updating the meeting from it's body (just pressing save and
    close) the meeting is bloated by an hour.
    E.g. if a meeting after daylight savings time is from 11:00 to 12:00, it's shown on the calendar  from 12:00 to 13:00, but after updating the meeting it's shown from 11:00-13:00.
    This happens only on the macs in the company.
    Thank you.

    Hi Harel,
    This is the forum to discuss questions and feedback for Windows-based Microsoft Office client. Since your query is directly related to Office for mac, I would suggest you to post in the forum of Office for Mac, where you can get more experienced responses:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?tab=Threads
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Daylight Savings Time and Time Zone Issue:

    Howdy!  Many of us woke up this morning to be dismayed to find that our iPhone was TWO hours behind instead of falling back one for the Daylight Savings Time adjustment, and were late for church.  I have an iPhone 4S, with iOS 5...
    I was working at that time of morning, and the initial switch went well.  However, when I woke up, the clock was yet another hour behind.  A little investigation showed that the Time zone had been changed to Denver (It was previously on Chicaco, and I live in Dallas.)  I tried to select it to change it, and it wouldn't allow me.  If I turned off the Set Automatically feature, then I could change it, but when I turned the Set Automatically feature back on, it would re-set the time zone to Denver.
    I found another thread where they discuss this:
    https://discussions.apple.com/message/16644669
    To fix this, put in airplane mode, then back out again, then re-choose your correct time zone.  If this doesn't work, then try turning your phone completely off and then on again.  Thanks to 4n6doc for the tip!
    The airplane mode trick worked for me:  I turned airplane mode on, then off, then went to the Date & Time and set my time zone to Dallas, TX while the Set Automatically was off.  When I turned the Set Automatically back on, it changed Dallas to Chicago, which is what every iPhone iOS I've ever had has done.

    Hi,
    Yes this is a correct way to fix the issue. One thing however, how did you set the timezone? For correct daylight saving handling, you'll have to use the long version, like America/New Yorw, NOT GMT-5 (for example).
    regards,
    ~ Simon

  • Access policy issues and daylight savings

    I have the WRVS4400N. I have purchased a few Linksys routers in the past and have been happy with their operation. The wireless access however, was mediocre until I purchased this model. This model has great a great wireless connection. I like the fact that I can make many changes to the settings on the router without having to reboot the router. The performance of this router in combination with the cable modem has been excellent. It far outperforms the equipment that it replaced. I will normally pick a linksys product over another brand.
    I am having 2 intermittent issues that are really causing me grief and an additional couple of annoying issues. I need help in fixing these issues. I have confirmed that I have the latest firmware version.
    1) Some computers do not have connection to the internet. As if the security policy is confused about the time or connection. I really think this is a security policy issue, but I will let you decide.
    2) There are some computers that I allow a 24/7 connection to the internet. For the rest I don’t want them to have access between the hours of 12a-6a. I have found that the connection doesn’t always shut-off. I have kids and do not want them to have access during those hours. I never had problems with my previous linksys router.
    3) I am unable to set an access policy that spans the 5 min between 11:55p and 12a. In my previous linksys router I could.
    4) The new daylight savings schedule is not part of my current firmware. This really threw off my security policies.
    I have found that if I reboot or if I simply goto the security policy screen and click on save settings it seems to correct itself. But, I shouldn’t have to babysit it to make sure that it’s working correctly. When I am out of town I need to know that my security policies will continue to work while I am away.
    Here’s my set up:
    1) I have a linksys cable modem that connects me to the internet through my cable provider.
    2) I have the linksys wireless (WRVS4400N) router that connects to the cable modem.
    3) I have a 3Com Superstack II switch as the backbone of my network which connects to the router.
    4) I have several devices connected to this router: computers, xbox, vonage phone line.

    This is EXACTLY what my router is doing...
    2) Access restrictions do not work, PERIOD...."ALLOW" will disable internet access for the entire subnet (regardless of the rule), and "DENY" will prevent uploading of file attachments to hotmail, myspace, facebook etc....for every computer on the subnet.
    Message Edited by DSMKilla on 10-26-2008 11:08 AM
    (Edited post for guideline compliance. Thanks!) 
    Message Edited by JOHNDOE_06 on 10-26-2008 11:39 AM

  • ICal on iPad no reflecting daylight savings time change correctly

    i have my iCal on my iPad to auto update with daylight savings, however, the start times are all ok, but the end times do not reflect the time change. am i missing something?

    I fixed this problem by going to system preferences--mail, calendars--and turned off time zone support. When my iPhone didn't change time for daylight savings, i had changed the time manually and apparently this moved my time zone from SF to Anchorage. After disabling time zone support, all my appointments were correct. You can also disable tim zone support withon the iCal application on a mac.

  • Published iCal Wrong with Daylight Savings!

    I publish two iCal calendars. I live in Hawaii and we do NOT use Daylight Savings Time. Last night .Mac apparently adjusted DSL so all my times are wrong by one hour! How do I fix this?
    (I already tried Unpublish and then Publish again. And I tried turning Time Zone Support on and off in iCal. Neither one works.)
    Any other ideas?

    Hi,
    See:
    http://www.guardian.co.uk/technology/blog/2010/nov/08/iphone-dst-bug-bites-ameri ca
    The actual support article is here:
    http://support.apple.com/kb/TS3542
    Best wishes
    John M

  • ICal crashes due to ART daylight savings

    iCal cannot handle the daylight savings logic for the ART timezone. iCal displays fails to displays October 18th (when the daylight saving is scheduled to happen), and crashes if the day is selected.
    I was not able to reproduce the problem on other timezones (e.g. EDT).
    Thanks,
    Carlos

    I've been having a similar problem. Since I upgraded to SL, iCal has been working strangely. I use Sl with Brazilian Portuguese, and set to Brasilia TimeZone. When I navigate on both day or month view, on changing from October 16 to 17, iCal shows a strange behavior. Sometimes it hangs, in other time it truncates the week view (showing only 5 days, even on pref set to show 7 days), or it shows a column named "fields", or show weeks beginning on tuesday or wednesday, or even, scrolling the week day by day.
    I've tried to unable timezone support, but with no results. I've also seen others users complaining on the same problem.

  • ICal times changed with change from Daylight savings time

    My times on iCal on my G5 are correct. I transferred them to my iPod through iTunes. But when I changed the time from Daylight savings time Sat, my times on my iPod's iCal all moved an hour earlier. However, an event that I added today has the correct time. Besides having my iPod clock set for the wrong time, how do I correct the times in my iCal?

    I now have a follow-up problem. Almost everything is right in my iPod calendar as I deleted and then manually added repeated events for Mon, Tue, Thurs, Fri, Sat, and Sun. into my G5 iCal. Mondays, Wednesdays, Thursdays, Fridays, Saturdays, and Sundays are correct in the iPod. However, my Tuesdays show both my Monday AND Tuesday events. Have you run into that problem?

  • SimpleDateFormat / Daylight Savings time issue in 1.5.0_11 ?

    I am having trouble with SimpleDateFormat.format(), possibly due to Daylight Savings Time, but I can't figure it out.
          import java.text.*;
          import java.util.*;
          public class Test {
            public static void main(String[] args) throws Exception{
              SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd z yyyy");
              Date date = dateFormat.parse("Tue April 13 CDT 2007");
              System.out.println(dateFormat.format(date));
              System.out.println(date.toString());
              SimpleDateFormat dateFormat2 = new SimpleDateFormat("MMMM dd, yyyy");
              System.out.println(dateFormat2.format(date));
          }I am in the CDT time zone.
    If I run this code on JRE 1.5.0_04-b05, I get:
    Fri Apr 13 CDT 2007
    Fri Apr 13 00:00:00 CDT 2007
    April 13, 2007This is what I expect. But, if I run this code on JRE 1.5.0_11-b03, I get:
    Fri Apr 13 CDT 2007
    Thu Apr 12 23:00:00 GMT-06:00 2007  
    April 12, 2007I don't understand why, the time calculated to be an hour off, since my time zone and locale are the same as that of the input string?
    I thought this could be a DST issue, but a) both dates are in DST, and b) I tried applying the fix to the Java 5 DST bug, on the off chance it would help. but it did nothing. http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6530336
    I'm stumped. Can anyone help?
    Thanks,
    Ed

    It looks like the problem is that Java doesn't have my timezone correct after all.
    SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd z yyyy");   
    System.out.println(dateFormat.getTimeZone());    prints:
    sun.util.calendar.ZoneInfo[id="GMT-06:00",offset=-21600000,dstSavings=0,useDaylight=false,transitions=0,lastRule=null]
    ...which is wrong. It should be dstSavings=3600000,useDaylight=true.
    So, one SimpleDateFormatter has CDT as its timezone, and the other has CST as its timezone. This changes the time from midnight on one day to 11 pm on the previous day, causing the wrong date to be shown.
    This workaround gives the date I want, the original date at its (not my) timezone.
        SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd z yyyy");   
        Date date = dateFormat.parse("Tue April 13 CDT 2007");
        SimpleDateFormat dateFormat2 = new SimpleDateFormat("MMMM dd, yyyy");
        dateFormat2.setTimeZone(dateFormat.getTimeZone());
        System.out.println(dateFormat2.format(date));Now if I can coerce Java to give me my correct local time zone, I'll be set.

Maybe you are looking for

  • I want to know why I can no longer get payment options for an online game I play with the firefox browser?

    when I try to purchase items on my online game I can no longer buy them.For some reason firefox stops the payment options from showing.I choose what I want to buy but when it comes to paying for it thats when nothing happens.No payment option is offe

  • Quicktime movies in iWeb??

    I want to include a lot of movies in my site I have presently 8 of them but when you go to the page they all have to load. Is their a way to create a button or link to a file that will open the movie in a specific section of the page and when another

  • Unlocking iPhone 5

    Hi, ive been trying to get my iphone 5 on vodafone UK unlocked. I put in the request to vodafone about a week ago, however i have just read something on the vodafone forum that has worried me. Apparently unless you are the original owner of the hands

  • Reverse Cobol Copy Book - default directory

    Hi, We use the functionality "Reverse COBOL Copy Book" quite often to import metadata for flat files. When you have to select the .cbb file the default path to select the file is c: Is there a possibility to set the default path to any other director

  • .band file doesn't open

    A friend has sent me a .band file, which I wanted to edit on my computer but it is not opening. When I try to open it through GarageBand an error message comes up. I need to edit the file so sending it to iTunes and things like that is not an option.