Updated to work with KH 3.1
This commit is contained in:
@@ -4,7 +4,6 @@
|
||||
* PTA Configuration - Authentication Driver
|
||||
*
|
||||
* @package PTA
|
||||
* @subpackage TSM
|
||||
* @category Configuration
|
||||
* @author Deon George
|
||||
* @copyright (c) 2010 phpTSMadmin Development Team
|
||||
@@ -12,11 +11,11 @@
|
||||
*/
|
||||
|
||||
return array(
|
||||
'driver' => 'ORM',
|
||||
'hash_method' => 'sha1',
|
||||
'driver' => 'TSM',
|
||||
'hash_method' => '',
|
||||
'salt_pattern' => '1, 3, 5, 9, 14, 15, 20, 21, 28, 30',
|
||||
'lifetime' => 1209600,
|
||||
'session_key' => 'username',
|
||||
'session_key' => 'auth_user',
|
||||
'forced_key' => 'auth_forced',
|
||||
);
|
||||
?>
|
||||
|
23
application/config/cache.php
Normal file
23
application/config/cache.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||
|
||||
/**
|
||||
* PTA Configuration - Cache Driver
|
||||
*
|
||||
* @package PTA
|
||||
* @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/lnapp',
|
||||
'default_expire' => 3600,
|
||||
)
|
||||
);
|
||||
?>
|
@@ -13,7 +13,6 @@
|
||||
return array(
|
||||
'cache_type' => 'file',
|
||||
'client' => '/opt/tivoli/tsm/client/ba/bin/dsmadmc',
|
||||
'stanza' => '',
|
||||
'client_errorlogname' => '/tmp/pta-tsm-errorlog.log',
|
||||
'date_format' => 'd-m-Y',
|
||||
'tsmpooltypes' => array('PRIMARY','ACTIVEDATA','COPY'),
|
||||
|
@@ -28,11 +28,11 @@ return array
|
||||
*
|
||||
* Ports and sockets may be appended to the hostname.
|
||||
*/
|
||||
'hostname' => 'localhost',
|
||||
'database' => 'kohana',
|
||||
//'hostname' => 'localhost', // Unused
|
||||
'username' => FALSE,
|
||||
'password' => FALSE,
|
||||
'persistent' => FALSE,
|
||||
//'persistent' => FALSE, // Unused
|
||||
'database' => 'local',
|
||||
),
|
||||
'table_prefix' => '',
|
||||
'charset' => 'utf8',
|
||||
|
Reference in New Issue
Block a user