session_start - headers already sent - really messed up!
Posted: Tue Sep 09, 2008 7:09 am
Okay so here's the deal. I have a file called test.php
For testing purposes I've made its content
I get this error
However, if I put the same EXACT code in 'ah.php', in the same directory, and open that file, it acts how it's supposed to. I'm SO confused why it's doing this! It's like file-specific on which files can open a session and which can't. Even if they're the same exact file, with the same permissions, just a different name.
What is this bug??
For testing purposes I've made its content
Code: Select all
<?php
session_start();
?>
HiCode: Select all
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/ilytorg/public_html/layouts/test.php:1) in /home/ilytorg/public_html/layouts/test.php on line 10What is this bug??