Anyone know what this means?
Warning: Cannot send session cache limiter - headers already sent in ../includes/admin_header.php3 on line 2
And why would it suddenly appear on only a couple of pages which are almost identical to others that are working fine?
code is:
<?php
session_start();
if (!$PHPSESSID)
{
session_register('bg');
session_register('navdir');
$bg = "#ffcc33";
$navdir = "10";
}
require "../includes/functions.php3";
include("../includes/bg.php3");
?>
All this is in an include file wihich is included at the top of every page, which works great except for a couple of pages?
rgds,
scott d~