Zend_Auth / Zend_Session error and storing objects in Auth Storage
- by Martin
Hi All,
I have been having a bit of a problem with Zend_Auth and keep getting an error within my Acl.
Within my Login Controller I setup my Zend_Auth storage as follows
$auth = Zend_Auth::getInstance();
$result = $auth->authenticate($adapter);
if ($result->isValid()) {
$userId = $adapter->getResultRowObject(array('user_id'),…