• Resolved joydipkar73

    (@joydipkar73)


    I just updated booking calendar and I get this error:

    1. Strict standards: Accessing static property wpdev_booking::$popover_front_end_js_is_writed as non static in /home/abc/public_html/test/wp-content/plugins/booking/core/lib/wpdev-booking-class.php on line 15

    I have Simple Ajax Chat plugin pre installed and both were running very ok… but after updating this plugin I get another error on Simple Ajax Chat plugin.

    2. Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /home/abc/public_html/test/wp-content/plugins/booking/core/lib/wpdev-booking-class.php:15) in /home/abc/public_html/test/wp-content/plugins/simple-ajax-chat/simple-ajax-chat-form.php on line 11

    3. Warning: Cannot modify header information – headers already sent by (output started at /home/abc/public_html/test/wp-content/plugins/booking/core/lib/wpdev-booking-class.php:15) in /home/abc/public_html/test/wp-content/plugins/wp-simple-firewall/src/processors/headers.php on line 41

    4. Warning: Cannot modify header information – headers already sent by (output started at /home/abc/public_html/test/wp-content/plugins/booking/core/lib/wpdev-booking-class.php:15) in /home/abc/public_html/test/wp-content/plugins/wp-simple-firewall/src/processors/headers.php on line 35

    In admin panel I am getting these errors:

    1.
    ( ! ) Strict standards: Accessing static property wpdev_booking::$popover_front_end_js_is_writed as non static in /home/abc/public_html/test/wp-content/plugins/booking/core/lib/wpdev-booking-class.php on line 15

    2.
    ( ! ) Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /home/abc/public_html/test/wp-content/plugins/booking/core/lib/wpdev-booking-class.php:15) in /home/abc/public_html/test/wp-content/plugins/simple-ajax-chat/simple-ajax-chat-form.php on line 11

    Please help me out immediately … my site is down and I am going to loose my client base

    • This topic was modified 9 years, 6 months ago by joydipkar73.
    • This topic was modified 9 years, 6 months ago by joydipkar73.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    Please try to make this fix:
    Please open this file ../{Booking Calendar Folder}/core\lib\wpdev-booking-class.php

    then find this code:

    
    <?php
    if ( ! defined( 'ABSPATH' ) ) exit;                                             // Exit if accessed directly
    
    class wpdev_booking {
    
        private static $popover_front_end_js_is_writed; 
    

    and replace it to this code:

    
    <?php
    if ( ! defined( 'ABSPATH' ) ) exit;                                             // Exit if accessed directly
    
    class wpdev_booking {
    
        private $popover_front_end_js_is_writed; 
    

    Then test it.

    If its will work, we will make next update with this fix.
    Kind Regards.

    Thread Starter joydipkar73

    (@joydipkar73)

    It worked

    And many thanks… may be this is the best kind of quality response from any plugin support team i have ever got.
    Going to give you a five star.

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

The topic ‘Error and warning in latest update’ is closed to new replies.