Hi. Im having a strange problem, and couldn't find any solution or
anyone with a similar problem... Its quite simple:
same controller, 2 methods:
function sessionWriteTest ($key, $value) {
$this->Session->write($key, $value);
}
function sessionReadTest ($key) {
debug($this->Session->read($key));
}
doesnt work...
modifying the method sessionWriteTest like this, works:
function sessionWriteTest ($key, $value) {
$_SESSION[$key] = $value;
}
Am I missing something really simple? My config is set quite default,
temp directories are chmod 777, and normal session handling works!
Thanks!
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---