question for Web Gurus
I'm working on the website for my company. and the website loads fine, but I get these lines that loads up on the top of the page. any idea why and how i can get rid of them?
The only change i made before this came up was removing a Flash image, and replacing it with text.
Thanks
Code:
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/.kala/monkeyth/magenta-inc.com/index_default.php:1) in /home/.kala/monkeyth/magenta-inc.com/include/pagemap.php on line 2 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/.kala/monkeyth/magenta-inc.com/index_default.php:1) in /home/.kala/monkeyth/magenta-inc.com/include/pagemap.php on line 2
Thanks
Last edited by e3NiNe; Apr 19, 2007 at 12:06 PM. Reason: added code tags
go to line 2 of that php page and see what code is on there. looks like it's trying to set a cookie after you started getting information back already. cookies have to be set in the headers, pretty much before anything is done. could just be a matter of re-ordering lines of code. hard to tell without seeing what the code was though.


