This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/application/config/auth.php

23 lines
552 B
PHP
Raw Permalink Normal View History

2011-03-03 23:06:18 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* PTA Configuration - Authentication Driver
*
* @package PTA
2012-11-26 05:57:18 +00:00
* @subpackage Authentication
2011-03-03 23:06:18 +00:00
* @category Configuration
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
* @license http://phptsmadmin.sf.net/license.html
*/
return array(
2011-05-23 10:01:27 +00:00
'driver' => 'TSM',
'hash_method' => '',
2011-05-09 07:40:50 +00:00
'salt_pattern' => '1, 3, 5, 9, 14, 15, 20, 21, 28, 30',
'lifetime' => 1209600,
2011-05-23 10:01:27 +00:00
'session_key' => 'auth_user',
2011-05-09 07:40:50 +00:00
'forced_key' => 'auth_forced',
2011-03-03 23:06:18 +00:00
);
?>