To share session between different apps all of them should use same session store and same session name. CakePHP session is set in /app/ config/core.php. You must setup your aa.php and bb.php same way to use one session in all three.
On Mar 30, 3:33 pm, Rimoe <[email protected]> wrote: > hi, > > everyone, > > I have set a session in aa.php > ( > session_start(); > $_SESSION['aa'] = '12345'; > ) > I can read the value in bb.php > ( > session_start(); > echo $_SESSION['aa'] ; > ) > > but I can't read the value in any aaas_controller.php. > ( > echo $this->Session->read('aa'); > echo $_SESSION['aa']; > ) > do anyone know why is it? > > Thank you very much > > rimoe Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. 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 To unsubscribe, reply using "remove me" as the subject.
