Posted by Carl Vondrick on 11/18/93 11:38
Jonathan wrote:
> It means that data (page output) was already sent to the c;ient browser
> before the session_start command is given.
Not exactly. It means that the session_start() call was sent after
output (as you said) and in the php.ini file, session.use_only_cookies
is set to true.
So, the solution: move the session_start() call to the top (recommended)
or change session.use_only_cookies to be 0.
Navigation:
[Reply to this message]
|