Issue with storage configuration
Dan Rossi <liveuser-zu2dZaOKXTSc5qR/[email protected]>
| Newsgroups | gmane.comp.php.pear.liveuser |
|---|---|
| Message-ID | <[email protected]> |
I think I have stepped on a bug, or an out of date example.
In LiveUser_Admin_Auth_Commin in init
if (!isset($conf['storage'])) {
$this->_stack->push(LIVEUSER_ADMIN_ERROR, 'exception',
array('msg' => 'Missing storage configuration array'));
return false;
}
the storage config is in the perm not auth config
'permContainer' => array(
'type' => 'Complex',
'alias' => array(),
'storage' => array(
'MDB2' => array(
'connection' => $db,
'dsn' => $dsn,
'prefix' => 'liveuser_',
'tables' => array(),
'fields' => array(),
'alias' => array(),
// 'force_seq' => false
),
),
What do i do ?