Possible Duplicate:
PHP session start “Cannot send session cookie and cache limiter”
So I have been developing on my localhost, and I uploaded it to my actual web server finally, and kept getting messages saying:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent
Even though session_start()
was at the top, no white space, etc...
So I did some googling, and the only way to get it to work properly was to put this at the very top:
ob_start("ob_gzhandler");
What does that exactly do? Is it related to my error.