I am using:
$this->Session->setFlash('gotcha!!', 'msg_success');
to write a msg in the Session and try to access it in the file
\app\views\elements\msg_success.ctp
with the code
if($session->check('Message.flash'))
{
echo $session->flash();
}
My Phpinfo() says
memory_limit 512M 512M
My app/config/core.php says
Configure::write('Session.save', 'php');
Configure::write('Session.cookie', 'CAKEPHP');
Configure::write('Session.start', true);
how can that be???