-
Notifications
You must be signed in to change notification settings - Fork 45
Description
Describe the bug
I have wp-cron.php run by wget. Everything it runs, I get the following warnings:
[09-Mar-2019 06:16:01 UTC] PHP Warning: session_set_save_handler(): Cannot change save handler when headers already sent in .../public_html/wp-content/plugins/wp-session-manager/vendor/ericmann/sessionz/php/Manager.php on line 133
[09-Mar-2019 06:16:01 UTC] PHP Warning: session_start(): Cannot start session when headers already sent in .../public_html/wp-content/plugins/wp-session-manager/wp-session-manager.php on line 139
Any idea why headers would already be sent when running wp-cron.php?
The stack trace looks like this:
• public_html/wp-cron.php - line 39 - require_once('wp-load.php')
• public_html/wp-load.php - line 37 - require_once('wp-config.php')
• public_html/wp-config.php - line 129 - require_once('wp-settings.php')
• public_html/wp-settings.php - line 374 - do_action('plugins_loaded')
• public_html/wp-includes/plugin.php - line 465 - $wp_filter[ $tag ]->do_action( $args )
• public_html/wp-includes/class-wp-hook.php - line 310 - apply_filters('', $args)
• public_html/wp-content/plugins/wp-session-manager/wp-session-manager.php - line 49 - EAMann\Sessionz\Manager::initialize()
• public_html/wp-content/plugins/wp-session-manager/vendor/ericmann/sessionz/php/Manager.php - line 133 - session_set_save_handler($manager)
I cannot see where the headers would have been sent.