Source for file conf.php
Documentation is available at conf.php
if (defined('DIRECTORY_SEPARATOR') && DIRECTORY_SEPARATOR == "\\") {
define('PATH_SEPARATOR', ';');
define('PATH_SEPARATOR', ':');
// set this to the path in which the directory for liveuser resides
// more remove the following two lines to test LiveUser in the standard
//$path_to_liveuser_dir = './pear/'.PATH_SEPARATOR;
//ini_set('include_path', $path_to_liveuser_dir.ini_get('include_path'));
$dsn = array ('username' => 'user',
'hostspec' => 'localhost',
'database' => 'pear_test');
'session' => array ('name' => 'PHPSESSID','varname' => 'loginInfo'),
'login' => array ('username' => 'handle', 'password' => 'passwd', 'remember' => 'rememberMe'),
'logout' => array ('trigger' => 'logout', 'destroy' => true , 'method' => 'get'),
'cookie' => array ('name' => 'loginInfo', 'path' => '/', 'domain' => '', 'lifetime' => 30 , 'secret' => 'mysecretkey'),
'authContainers' => array (0 => array (
'allowDuplicateHandles' => 1 ,
'passwordEncryptionMode' => 'PLAIN'
'permContainer' => array (
// Get LiveUser class definition
require_once 'LiveUser.php';
Documentation generated on Mon, 11 Mar 2019 10:16:11 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|