My wordpress plugin uses sessions for handling various things, and on the production site I'm testing it on output buffering is not on by default so I'm getting a lot of messages such as these:
Warning: session_start() [function.session-start]:
Cannot send session cookie -
headers already sent by
(output started at /blah/wp-content/themes/Starkers/header.php:12)
in /blah/wp-content/plugins/rsq/store.php on line 4
Is there a hook or something I can latch on to in order to turn on output buffering? Am I going about this in entirely the wrong way?
Thanks, John.