Took another look at this issue. There *is* an easy way to access to
the Cake session from outside of the framework, you just have to
reference it correctly:
if(isset($_COOKIE[CAKEPHP])){
session_id($_COOKIE[CAKEPHP]);
}
session_start();
*not just*
session_start();
Since cake uses a special session name, you need to reference that ID
before starting the session.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---