¿Ya removiste el Autoloader?
Tu init debe estar mas o menos así:
Código PHP:
Ver original<?php
class Qclientes_Bootstrap extends Zend_Application_Module_Bootstrap
{
protected function _initPlugins()
{
$this->bootstrap('frontController');
$fc = $this->getResource('frontController');
$acl = new Qclientes_Model_LibraryAcl();
$auth = Zend_Auth::getInstance();
$fc ->registerPlugin(new Qclientes_Plugin_AccessCheck($acl, $auth));
}
}