• therealgilles

    (@chamois_blanc)


    Hello,

    I started to get this after upgrading to WP 6.1 and other recent plugin updates. Haven’t had a chance to look into why. It’s happening when wp-cron.php runs:

    PHP Warning: session_set_save_handler(): Cannot change save handler when headers already sent in .../wp-content/plugins/wp-session-manager/vendor/ericmann/sessionz/php/Manager.php on line 133

Viewing 1 replies (of 1 total)
  • I was having the same problem and found the solution from another application. Edit the file vendor/ericmann/sessionz/php/Manager.php and replace line #133:

    session_set_save_handler($manager);

    with this:

    if ( !headers_sent() ) {
        session_set_save_handler( $manager );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Headers already sent’ is closed to new replies.