Posted by s a n j a y on 10/07/82 11:38
camou wrote:
> I cannot under this error message and how I may resolve it. Any help
> appreciated. It appears when I combine Smarty with session_start
>
> Warning: Cannot modify header information - headers already sent by
> (output started at /home/ ...
Well this actually means that the some sort of data is already sent to
the client browser before session_start has been called. So you can do
one thing, make sure you do not have any print, echo statements before
session_start. It can not be even a blank html line.
hope this helps.
Sanjay
[Back to original message]
|