Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent ...


This error usually occurs when "session_start ()" is below any data output to the browser, it can be html tags or syntax errors in code snippets that precede the function. Example:

Correct form:

<? Php

Session_start ();
Echo "Site Content!";

?>

Incorrect form:

<? Php

Echo "Website Content!";
Session_start ();

?>

For more details visit:
http://www.php.net/manual/en/function.session-start.php

2017-03-22 16:03 MFORMULA {writeRevision}
Average rating: 0 (0 Votes)

You cannot comment on this entry

Chuck Norris has counted to infinity. Twice.

{debugMessages}