I'm having a spot of bother getting anything to log with FirePHP and Zend Framework. Firebug is installed and the site is in the allowed list. I don't know if there are any other tests I can do to check FirePHP.
Bootstrap :
protected function _initActionHelper()
{
$writer = new Zend_Log_Writer_Firebug();
$logger = new Zend_Log($writer);
Zend_Registry::set('logger', $logger);
}
Controller :
class IndexController extends Zend_Controller_Action
{
protected $logger;
public function init()
{
$this->logger = Zend_Registry::get('logger');
}
public function indexAction()
{
$this->logger->log('ALERT', Zend_Log::ALERT);
}
}