First off you should not place code into core.php, it should be in
bootstrap.php.
Secondly you should be using the Session component and not doing
session_start().
App::import('Component', 'Session');
$Session = new SessionComponent();
Lastly, you should overwrite the core settings in the bootstrap file.
An example here:
http://www.milesj.me/blog/read/25/turning-debug-off-automatically-in-production
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" 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?hl=en
-~----------~----~----~----~------~----~------~--~---