> The code i have creates my user and puts it into the database just > fine..but after that, nothing happens... no flash, no redirect.
Have you made a login() function in /app/controllers/ users_controller.php? It looks like you've got the creation of new users sorted, but you now need to let them log in, which is really a separate process. You need to get the login method working next, then you can worry about making it happen automatically once someone's signed up. This is something I want to explain in my guide soon, but for now try looking into $this->Session in the controller. That's what you can use to store the information about the user who's logging in, so it remembers them as they move around the site. Hope that helps, Zoe. --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---
