• dirk2024

    (@dirk2024)


    The events.ics file that is automatically generated by Events Manager contains an error. As a result the event doesn’t use the correct timezone, but the standard (zulu) time.

    All timestamps in the events.ics file are written as follows:
    DTSTART:20240701T173000Z
    and therefor uses the Zulu timezone.
    It should be written as
    DTSTART;TZID=Europe/Amsterdam:20240701T173000
    where ‘Europe/Amsterdam’ is the selected timezone.

    So insert ‘;TZID=Europe/Amsterdam’ after the timestampname and remove the ‘Z’ after the timestamp. (Insert

    Could you adjust this in the Event manager code?

    events.ics file >>
    
    BEGIN:VCALENDAR
    VERSION:2.0
    PRODID:-//wp-events-plugin.com//6.3//EN
    TZID:Europe/Amsterdam
    X-WR-TIMEZONE:Europe/Amsterdam
    BEGIN:VEVENT
    UID:[email protected]
    DTSTART:20240701T173000Z
    DTEND:20240701T223000Z
    DTSTAMP:20240418T151253Z
    URL:https://www.xxx.nl/event/1-juli/
    SUMMARY:Eerste bijeenkomst
    DESCRIPTION:Nadere informatie volgt.
    END:VEVENT
    BEGIN:VEVENT
    UID:[email protected]
    DTSTART:20240916T173000Z
    DTEND:20240916T223000Z
    DTSTAMP:20230926T093240Z
    URL:https://www.xxx.nl/event/1-aug/
    SUMMARY:Najaarsbijeenkomst
    DESCRIPTION:Nadere informatie volgt.
    END:VEVENT
    END:VCALENDAR
    Correct events.ics file >>
    
    BEGIN:VCALENDAR
    VERSION:2.0
    PRODID:-//wp-events-plugin.com//6.3//EN
    TZID:Europe/Amsterdam
    X-WR-TIMEZONE:Europe/Amsterdam
    BEGIN:VEVENT
    UID:[email protected]
    DTSTART;TZID=Europe/Amsterdam:20240701T173000
    DTEND;TZID=Europe/Amsterdam:20240701T223000
    DTSTAMP;TZID=Europe/Amsterdam:20240418T151253
    URL:https://www.xxx.nl/event/1-juli/
    SUMMARY:Eerste bijeenkomst
    DESCRIPTION:Nadere informatie volgt.
    END:VEVENT
    BEGIN:VEVENT
    UID:[email protected]
    DTSTART;TZID=Europe/Amsterdam:20240916T173000
    DTEND;TZID=Europe/Amsterdam:20240916T223000
    DTSTAMP;TZID=Europe/Amsterdam:20230926T093240
    URL:https://www.xxx.nl/event/1-aug/
    SUMMARY:Najaarsbijeenkomst
    DESCRIPTION:Nadere informatie volgt.
    END:VEVENT
    END:VCALENDAR
  • The topic ‘Time Zone error in events.ics’ is closed to new replies.