• Resolved badi3

    (@badi3)


    Hi Support, can you tell me what to do?

    Fatal error: Uncaught exception ‘InvalidArgumentException’ with message ‘The supplied timezone [] is not supported.’ in /homepages/8/d587967188/htdocs/clickandbuilds/laurencebetoin/wp-content/plugins/events-made-easy/ExpressiveDate.php:156 Stack trace: #0 /homepages/8/d587967188/htdocs/clickandbuilds/laurencebetoin/wp-content/plugins/events-made-easy/ExpressiveDate.php(54): ExpressiveDate->parseSuppliedTimezone(”) #1 /homepages/8/d587967188/htdocs/clickandbuilds/laurencebetoin/wp-content/plugins/events-made-easy/eme_events.php(1417): ExpressiveDate->__construct(NULL, ”) #2 /homepages/8/d587967188/htdocs/clickandbuilds/laurencebetoin/wp-content/plugins/events-made-easy/eme_events.php(1973): eme_get_events(0, ‘future’, ‘ASC’, 0, ”, 0, ”, ”, 1, ”, 0, ”) #3 /homepages/8/d587967188/htdocs/clickandbuilds/laurencebetoin/wp-content/plugins/events-made-easy/eme_events.php(549): eme_events_table(”, ‘future’) #4 [internal function]: eme_events_page(”) #5 /homepages/8/d587967188/htdocs/clickandbuilds/laurencebetoin/wp-includ in /homepages/8/d587967188/htdocs/clickandbuilds/laurencebetoin/wp-content/plugins/events-made-easy/ExpressiveDate.php on line 156

    https://ww.wp.xz.cn/plugins/events-made-easy/

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Franky

    (@liedekef)

    What is the timezone set in php.ini ?
    And which timezone do you have configured in the wordpress general settings?

    Thread Starter badi3

    (@badi3)

    Hi Franky, nothing in the php.ini only safe_mode = off;
    wordpress settings UTC +2 as i am in France

    Plugin Author Franky

    (@liedekef)

    ok, maybe that causes it. What happens if you change that to Europe/Paris?

    Thread Starter badi3

    (@badi3)

    Done, you are a genius! thanks for your support

    I think many users have this problem like me too. can you give me an idea where i find php.ini and how ecactly I can fix that?

    Plugin Author Franky

    (@liedekef)

    It’s not in the php.ini, but in your wordpress settings: use a “location based” setting (and not just UTC).
    I’ll release a new version this evening that takes the UTC-setting into account (in wordpress it seems the same setting, but it generates 2 wordpress options in fact …)

    Great, cause i made a downgrade, I was shockt this morning cause I will have a big event next weekend 🙂 so i wait till the new version will comming.

    Thanks for you great and quick support.

    Plugin Author Franky

    (@liedekef)

    If you want to test out, change in events-manager.php the line (@line 256):

    // set some vars
    $eme_timezone = get_option('timezone_string');

    to

    // set some vars
    $eme_timezone = get_option('timezone_string');
    if (!$eme_timezone) {
            $offset = get_option('gmt_offset');
            $eme_timezone = timezone_name_from_abbr(null, $offset * 3600, false);
            if ($eme_timezone === false) $eme_timezone = timezone_name_from_abbr(null, $offset * 3600, true);
    }

    works. but now I have following: Warning: ColReaorder require Datatables 1.10.8 or greater.

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Fatal error’ is closed to new replies.