I have the following situation: I registered a user, standard authentication with a DB table
$authAdapter = new Zend_Auth_Adapter_DbTable(Zend_Db_Table::getDefaultAdapter());
$authAdapter->setTableName('users');
$authAdapter->setIdentityColumn('user_name');
$authAdapter->setCredentialColumn('password');
When the user edits his profile, I save it in Db, but I also need to update the repository (using the standard Zend_Auth_Storage_Session). Is there an easy way to do this? Many thanks.
source
share