Hola, quisiera saber si alquien me pudiera dar una mano porque no logro hacer funcionar el "Zend_Db_Profiler_Firebug".
En el "Bootstrap.php" tengo:
Código PHP:
$view->profiler = new Zend_Db_Profiler_Firebug('All DB Queries');
$view->profiler->setEnabled(true);
Luego en el controlador tengo lo siguiente:
Código PHP:
$multidb = $this->getInvokeArg('bootstrap')->getPluginResource('multidb');
// Don't forget to initialize the resource first
$multidb->init();
$this->db = $multidb->getDb('db');
$this->db->setFetchMode(Zend_Db::FETCH_OBJ);
$this->db->setProfiler($this->view->profiler);
Y no muestra nada... donde esta el error?