Based on what you described, it sounds like when the user logs in, you store the user object in the session, and that's where you're reading from whenever you want to see if the user paid. But when the user pays, you're only updating the user table in the database. One solution would be to read user information from the database every time you need it, and not get it from the session (which is stale back to the time the user logged in).
-- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
