I have a really weird error with a page on my site, and in particular at only one url.
I have a PHP include on the very first line of the page. The very first line of the included file is session_start();
I get this error when the page loads:
Warning: session_start(): Cannot send session cookie - headers already sent by... //etc
This is odd enough as the session start is the very first thing on the page and there are no other attempts to start a session. However there's something even weirder going on...
I have many other pages that use basically identical code with different content and they work fine with no errors. I replaced the entire code in the problem page with the code from another page, basically creating a clone. When loading the page the error still happens! WTH?
Any ideas?