I'm not entirely understanding your question, but to use the Cake
session in other PHP scripts, the only issue I've found is setting the
right session cookie.  So if in your app/config/core.php you have

define('CAKE_SESSION_COOKIE', 'MyApplication');

Then in your "normal" php script, have

// get the Cake Session
if(isset($_COOKIE['MyApplication'])){
        session_id($_COOKIE['MyApplication']);
}
session_start();


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Cake PHP" group.
To post to this group, send email to cake-php@googlegroups.com
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