01-01-2008, 02:13 PM
|
#2 (permalink)
|
|
The Frequenter
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
|
Hi,
This message means that your script has already output something before the cookie information is sent.
Often this is caused by a notice/warning that PHP is sending. Try putting:
PHP Code:
error_reporting(E_ALL);
as the very first line of your script and see if PHP then shows the errors.
Also, check that config.php isn't sending any output (even a blank space/line) and make sure that "display_errors" is set to true in your php.ini (if you have access to it)
Alan
|
|
|