Advertisement
Advertisement
| 07.11.2008 at 07:36PM PDT, ID: 23559105 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: |
$liveuser_conf =
array(
'debug' => &$logger,
'session' => array(
'name' => 'PHPSESSION', // liveuser session name
'varname' => 'liveuser_data' // liveuser session var name
),
'cookie' => array(
'name' => 'loginInfo',
'lifetime' => 30,
'path' => null,
'domain' => '.XXXXXXXXXX.com',
'secret' => 'XXXXXXXXXX',
'savedir' => '/_tmp_dir',
'secure' => false
),
'cache_perm' => false,
'login' => array(
'force' => false // should the user be forced to login
),
'logout' => array(
'destroy' => true // whether to destroy the session on logout
),
'permContainer' => array(
'type' => 'Medium',
'storage' => array(
'DB' => array( // storage container name
'dbc' => &$db['db_object'],
'prefix' => 'userinfo_', // table prefix
'tables' => array(),
'fields' => array(),
'alias' => array()
)
)
),
'authContainers' => array(
array(
'type' => 'DB', // auth container name
'expireTime' => 21600, // max lifetime of a session in seconds
'idleTime' => 7200, // max time between 2 requests
'allowDuplicateHandles' => 0,
'allowEmptyPasswords' => 0, // 0=false, 1=true
'passwordEncryptionMode'=> 'MD5',
'storage' => array(
'dbc' => &$db['db_object'],
'alias' => array( // contains any additional
// or non-default field alias
'lastlogin' => 'lastlogin',
'is_active' => 'is_active',
'owner_user_id' => 'owner_user_id',
'owner_group_id' => 'owner_group_id',
'email' => 'handle'
),
'fields' => array( // contains any additional
// or non-default field types
'lastlogin' => 'timestamp',
'is_active' => 'boolean',
'owner_user_id' => 'integer',
'owner_group_id' => 'integer',
'email' => 'text'
),
'tables' => array( // contains additional tables
// or fields in existing tables
'users' => array(
'fields' => array(
'lastlogin' => false,
'is_active' => false,
'owner_user_id' => false,
'owner_group_id' => false,
'email' => false
)
)
)
)
)
)
);
$auth = new Authentication($db['db_object'], $smarty, $liveuser_conf);
|