Re: How do I setup CakePHP 1.3.11 to use database sessions?

2011-09-21 Thread arron
* [Note: Session.table is deprecated as of CakePHP 1.3] */ // so get rid of it Configure::write('Session.table', 'cake_sessions'); try this Configure::write('Session.save', 'database'); Configure::write('Session.model', 'Session'); Configure::write('Session.database', 'default'); works for

How do I setup CakePHP 1.3.11 to use database sessions?

2011-09-21 Thread carichardson
Hello, I'm currently switching from php sessions to database sessions in cakePHP 1.3.11. I used the command line to create the cake_sessions database table. I've got the following in my core.php file: Configure::write('Session.save', 'database'); Configure::write('Session.table', 'cake_sessions'