I'm pretty sure the 'cake session' is just a PHP session with with certain Cake-based data stored in it. You just want to make sure your pages have <? session_start() ?> before any code, or that you have php.ini set to automatically keep sessions. If you were to go to a blank php file in webroot after storing data in the session, it should be there just fine. It's after the session has timed out (usually around 15 minutes) or when you're in a freshly opened browser window that session data will be lost.
You could do your user validation with a simple MySQL table if your application is that simple. Just make sure you write them to the session the way you want them. Check out the session functions at php.net. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
