Updates from lnApp
This commit is contained in:
@@ -16,5 +16,6 @@ return array(
|
||||
'hash_key' => '',
|
||||
'lifetime' => 1209600,
|
||||
'session_key' => 'auth_user',
|
||||
'forced_key' => 'auth_forced',
|
||||
);
|
||||
?>
|
||||
|
@@ -1,10 +1,23 @@
|
||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||
|
||||
/**
|
||||
* lnApp Configuration - Cache Driver
|
||||
*
|
||||
* @package lnApp
|
||||
* @subpackage Cache
|
||||
* @category Configuration
|
||||
* @author Deon George
|
||||
* @copyright (c) 2010 phpTSMadmin Development Team
|
||||
* @license http://phptsmadmin.sf.net/license.html
|
||||
*/
|
||||
|
||||
return array
|
||||
(
|
||||
'file' => array
|
||||
(
|
||||
'driver' => 'file',
|
||||
'cache_dir' => '/dev/shm/osb',
|
||||
'cache_dir' => Kohana::$cache_dir ? Kohana::$cache_dir : '/dev/shm/lnapp',
|
||||
'default_expire' => 3600,
|
||||
)
|
||||
);
|
||||
?>
|
||||
|
Reference in New Issue
Block a user