• Resolved gordondavis

    (@gordondavis)


    I keep getting this errors when a member/guest tries to RSVP to an event. I does register them for the event but you have to close the window to close the error. Any thoughts?

    Warning: Creating default object from empty value in /homepages/26/d524308338/htdocs/ORC/wp-content/plugins/rsvpmaker/rsvpmaker-admin.php on line 2645

    Warning: Cannot modify header information – headers already sent by (output started at /homepages/26/d524308338/htdocs/ORC/wp-content/plugins/rsvpmaker/rsvpmaker-admin.php:2645) in /homepages/26/d524308338/htdocs/ORC/wp-content/plugins/rsvpmaker/rsvpmaker-plugabble.php on line 1416

    Warning: Cannot modify header information – headers already sent by (output started at /homepages/26/d524308338/htdocs/ORC/wp-content/plugins/rsvpmaker/rsvpmaker-admin.php:2645) in /homepages/26/d524308338/htdocs/ORC/wp-content/plugins/rsvpmaker/rsvpmaker-plugabble.php on line 1417

    Warning: Cannot modify header information – headers already sent by (output started at /homepages/26/d524308338/htdocs/ORC/wp-content/plugins/rsvpmaker/rsvpmaker-admin.php:2645) in /homepages/26/d524308338/htdocs/ORC/wp-content/plugins/rsvpmaker/rsvpmaker-plugabble.php on line 1554

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author davidfcarr

    (@davidfcarr)

    Go into your RSVPMaker settings and check that you have a default confirmation message defined. I’m adding some additional error checking code into the next release for when a confirmation message isn’t defined either in the settings or in the specific event. Guessing that’s the case here.

    Also, if this is a production site, I recommend logging errors rather than allowing them to be displayed (and interrupting page load).

    I’m currently using this in wp-config.php to create timestamped logs outside of public_html

    // Enable WP_DEBUG mode
    define( 'WP_DEBUG', true );
    // Enable Debug logging to file
    define( 'WP_DEBUG_LOG', '../debug'.date('Ymd').'.log' );
    // Disable display of errors and warnings 
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
    
    Plugin Author davidfcarr

    (@davidfcarr)

    Update 7.2.8 will recreate the post that represents the default confirmation message if it was accidentally deleted.

    Thread Starter gordondavis

    (@gordondavis)

    Thanks, I updated the default confirmation and did the trick.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Errors after Recent updates’ is closed to new replies.