管理员和前端的不同会话

时间:2010-04-19 11:40:01

标签: php zend-framework session

它是我使用ZF的第一个应用程序。根据我们的客户要求,我制作了单独的管理员和前面板。不使用Zend_Acl。会话到期时我遇到问题它总是把我带到前端登录页面。我试图通过会话解决它,但它使用单个会话管理anf前面板。我有什么办法,所以我可以为管理员和前面板创建单独的会话?

1 个答案:

答案 0 :(得分:0)

abstract class My_Controller_Action extends Zend_Controller_Action
{     
    public function init()
    {
        parent::init();

        $this->auth = Zend_Auth::getInstance();
        if ($this->getRequest()->getModuleName() == 'admin') {
            $this->auth->setStorage(new Zend_Auth_Storage_Session('Zend_Auth_Admin'));
            $this->session = new Zend_Session_Namespace('AdminSession');
        } else {
            $this->session = new Zend_Session_Namespace('FrontSession');
        }
    }
}