| PHP: Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent |
|
| programming |
|
Solution: make sure that session_start() is the first statement in your PHP script. Even a white space or or any other characters before session_start() or even before <?PHP tag will result in an error.
example:
This will result in "Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent" because the first character in the script is a " " and this will be sent to the browser BEFORE the session_start().
Comments (0)
Powered by !JoomlaComment 4.0 beta1
!joomlacomment 4.0 Copyright (C) 2009 Compojoom.com . All rights reserved." |

