Forums

Join
bbPress Support ForumsTroubleshootingSession header problem

Info

Session header problem

  1. When including wp-config.php in my config.php with this code:
    <?php require_once('/home/path/public_html/wp-blog-header.php'); ?>

    I get this error

    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /public_html/wp-blog-header.php:29) in

    Everything works its just this message showing up. I read in one plugin support page when I was searching through google that I have to edit the session code to say :

    @session_start();

    Although.. i'm not quite sure where..

  2. I fixed this problem :D

    the topic_views plugin was also sending out a session and did not have the @ symbol in place.

    All is fixed ^^

  3. Having duplicate sessions is actually stupid.. since I only need one. Deleted the session from the plugin.

  4. You must log in to post.