Page 1 of 1

Error Display

Posted: Mon Mar 12, 2012 8:33 pm
by abbey4biz
Pls can smone help out?

I got this error code each time i try to login through my site:

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/wwwalaba/public_html/index2.php:1) in /home/wwwalaba/public_html/clients/dbc.php on line 63

Re: Error Display

Posted: Mon Mar 12, 2012 9:13 pm
by califdon
Headers can be sent to a browser ONLY if absolutely nothing has previously been sent to the browser, even a blank line, because once the browser has received anything other than headers, it no longer can process them. So this error message tells you that your PHP script has sent something to the browser before it encountered the header for session cache limiter. It could be something as trivial as there being a blank line at the beginning of your script.