PDA

View Full Version : Headers Already Sent



Peter
02-18-2004, 11:09 PM
Warning: Cannot modify header information - headers already sent by (output started etc....

thats the message i am getting at almost PHP script.... what to do?

Peter
02-18-2004, 11:10 PM
This one at another domain.....
Warning: Warning: session_start(): Cannot send session cookie - headers already sent by (output started

DirectAdmin Support
02-19-2004, 10:21 AM
That means something is being outputted before another "header()" function is called... check the code to make sure you arn't echo/printing anything before calling the header() function. (header must come before anything else is printed, if you use it)

John

Peter
02-19-2004, 11:27 AM
It was a space after ?>
Weird...