Re: Question on the session handler

2011-11-14 Thread Graham Weldon
Hey, You should be able to change your session configuration slightly: /// in: Config/core.php Configure::write('Session.handler', array( 'model' => 'MySession' )); Configure::write('Session', array( 'defaults' => 'database' )); /// Create your session model in: Model/MySession.php From ther

Question on the session handler

2011-11-14 Thread socrates
Hello, I have create two separate web applications but this application have to share the same db, so I thought I would create two separate tables for session management on db, my question would be, can I do this through configuration, or do I create a new session handler? thanks for your attention