Header cannor be sent [duplicate]
I got some error when I uploaded my site to server. The error is:
Cannot modify header information - headers already sent by (output started at.....)
My site w开发者_如何学Goorks fine on my localhost. Whats the possible error?
your server settings are probably just suppressing the error on your local machine, but it's almost impossible to tell without more information.
Things to watch out for include making sure there are no characters before the opening <?php
, for example. This includes a UTF8-BOM. But really it's difficult to know without more info.
Remove any/all echo
, print()
or print_r()
statements before the header()
function is called.
Alternatively, comment them out //
精彩评论