公告版位
部落格現在轉到 http://blog.carlcarl.me 囉,要跟pixnet的部落格說掰掰哩>.<

目前分類:Zend Framework (2)

瀏覽方式: 標題列表 簡短摘要

最近在想辦法加速zend framework的執行速度 弄了超久

下次有這種case 我死都不用zend了= =

文章標籤

卡卡 發表在 痞客邦 留言(0) 人氣()

首先先在bootstrap.php檔案裡加上下面這個function

    protected function _initControllers()
    {
        $this->bootstrap('FrontController');  
        //require_once '../library/Controller/Helper/Acl.php';
        //require_once '../library/Controller/Plugin/Auth.php';

        $acl = new Controller_Helper_Acl();
        $auth = Zend_Auth::getInstance();

        $front = Zend_Controller_Front::getInstance();
        $front->registerPlugin(new Controller_Plugin_Auth($auth, $acl));

    }


文章標籤

卡卡 發表在 痞客邦 留言(0) 人氣()