• Resolved thordar

    (@thordar)


    I just updates my site to WordPress 4.7, but your plugin is not compatible. I get this error message:

    Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /home/marijtsc/public_html/wp-content/themes/marijt 2.0/functions.php:126) in /home/marijtsc/public_html/wp-content/plugins/blog-designer/blog-designer.php on line 2119

    If I deactivate the plugin, the warning is gone. Of course I have no blog as well…

    Can you please update the plugin for WordPress 4.7?

    Kind regards,

    Wietske Smid

Viewing 1 replies (of 1 total)
  • Plugin Author solwininfotech

    (@solwininfotech)

    Hi @thordar,

    We are not facing an any issue with session at our end but if you are facing this issue with your setup then it might be due to lower php version your are using.

    Please change that whole function code to new below one.

    if (!function_exists('bd_session_start')) {
    
      function bd_session_start() {
        if(version_compare(phpversion(), "5.4.0") != -1) {
              if (session_status() == PHP_SESSION_NONE) {
                    session_start();
              }
        } else {
              if(session_id() == '') {
                    session_start();
              }
        }
      }
    
    }

    Please try this above changes.

    Regards,
    Solwin Team

Viewing 1 replies (of 1 total)

The topic ‘Not compatible with WordPress 4.7’ is closed to new replies.