When I return to my site after a period of time -like a few hours - I get 3 PHP warnings like in the screenshot for some reason. When I login/logout, the warnings go away.
[phpBB Debug] PHP Warning: in file [ROOT]/includes/session.php on line 1042: Cannot modify header information - headers already sent by (output started at /home/content/60/11957760/html/runicparadise/index.php:22) [phpBB Debug] PHP Warning: in file [ROOT]/includes/session.php on line 1042: Cannot modify header information - headers already sent by (output started at /home/content/60/11957760/html/runicparadise/index.php:22) [phpBB Debug] PHP Warning: in file [ROOT]/includes/session.php on line 1042: Cannot modify header information - headers already sent by (output started at /home/content/60/11957760/html/runicparadise/index.php:22)
This is the php code from line 22 it's referring to... the other reference seems to be somewhere on my host's server I guess?
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './forums/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
?>