Hello all, I have a site named portal.mysite.com and a site called cakephp.mysite.com. My users log into portal.mysite.com so I wanted them to be able to go directly into the cakephp.mysite.com without re- logging in. Is there a way to do this or a setting that I am missing? The first site is straight PHP and I create the following session however, I can not see it when they go to the cake site.
$User = array(); $User['User']['id'] = $sID; $User['User']['user_type'] = 1; $User['User']['username'] = $sEmail; $User['User']['deleted'] = 0; $_SESSION["Auth"] = $User; --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
