Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent - why this error? am using xampp....same code when i try in Wamp it is working..:confused
Posted

1 solution

It means that something is being output before session_start() is called.

If you can't see anything obvious, check for blank lines or spaces before the opening <?php tag on the page, and in any files included before session_start() is called. If you're using UTF-8 files it can be caused by the BOM too.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900