A long time ago i spent hours trying to figure out why i was getting
this only to find out the i had a space outside of the php tags (space
here <? ?>). This is the first thing i look for now when i get a session
error like that. You may want to check to see if you have this too. :-p
I can confirm this happened to me as well. I had separated the top comment in one of my files from the rest of the code.
i.e.
<?php
/*
* My Comments went here
*/
?>
<?php
My code went here
?>
For some reason it did not like the space between the two and gave the session errors you are seeing. Combining the php tags fixed my problem.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---
