On Wed, May 19, 2010 at 11:16, WhyNotSmile <[email protected]> wrote: > Thanks Matt. > > Is it ok just to change to cake sessions, or do I need to do anything > else? The system has been live for a while, so I don't want to lose > any data - I assume it will be ok, but just want to check!
First, to clarify, the reason you're changing to cake sessions (away from php sessions) is to take advantage of cake's session handler. You could always modify php.ini, but then you're changing the session properties for all apps on your server. Not good. When you change to cake sessions, all authenticated users will be logged out. The only data last will be what you have stored in each session's $_SESSION variable. Should not be a big deal. Matt Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" 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
