Urgent : Nothing since 4.02 update Ticket Plus

Home Forums Ticket Products Event Tickets Plus Urgent : Nothing since 4.02 update Ticket Plus

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1043134
    eightgr
    Participant

    Since tonight and the 4.02 Update our event is down and only showing a blank page : http://www.iamag.co/features/event/its-art-master-classes-16/

    It’s a disaster as we’re running a campaign before christmas for the tickets.

    Any help really apreciate

    #1043157
    eightgr
    Participant

    This reply is private.

    #1043160
    Brian
    Member

    Hi,

    Sorry for the issues here.

    In versions less than PHP 5.5 this error is occurring due to the incorrect use of the empty function.

    In this file:

    event-tickets-plus/src/Tribe/Commerce/WooCommerce/Orders/Cancelled.php

    on line 51

    If you replace this:

    if ( empty( get_post( $ticket_id ) ) ) {

    With this:

    $ticket_post = get_post( $ticket_id );
    if ( empty( $ticket_post ) ) {

    That should fix the issue for now.

    Let me know if that works for you.

    Thanks

    #1043167
    eightgr
    Participant

    Hi even with correction 4.02 ends with a blank page. I revert to 4.01RC and it’s working fine.

    So something in the code of 4.02 is messing my site

    #1043177
    Brian
    Member

    Yep it looks like the issue it was I outlined in my first reply here.

    You can either start at 4.0.1, update to 4.0.2 and make that change or wait for 4.0.3

    Thanks

    #1076286
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Urgent : Nothing since 4.02 update Ticket Plus’ is closed to new replies.