How is your core.php configured? Post what you have for all
Configure::write('Session.*', '...') and whether they are uncommented
or not.

On Mon, Apr 14, 2008 at 1:35 PM, Ramiro Araujo <[EMAIL PROTECTED]> wrote:
>
>  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
-~----------~----~----~----~------~----~------~--~---

Reply via email to