Advertisement
salientdigital

Kohana 3 session.php config file

Apr 6th, 2011
723
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php defined('SYSPATH') or die('No direct script access.');
  2. /**
  3.  * $Id$
  4.  */
  5.  
  6.  return array(
  7.       'cookie' => array(
  8.           'name' => 'session_cookie',
  9.           'encrypted' => TRUE,
  10.           'lifetime' => 43200,
  11.       ),
  12.       'native' => array(
  13.           'name' => 'session_native',
  14.           'encrypted' => TRUE,
  15.           'lifetime' => 43200,
  16.       ),
  17.       'database' => array(
  18.           'name' => 'session_database',
  19.           'group' => 'default',
  20.           'table' => 'sessions',
  21.       ),
  22.   );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement