I’m getting this a lot:
PHP Warning: session_start(): Cannot start session when headers already sent in /var/xxx/xxxx.com/public_html/wp-content/plugins/pro-sites/pro-sites-files/lib/ProSites/Helper/Session.php on line 29
And this is what’s happening on line 29 in Session.php:
// Make sure session is started
if ( ! session_id() ) {
session_start();
}
Is it a bug?
Or what else could cause this?
Thanks!