Zend Framework 1.9.x and Firebug

Can someone point me in the right direction to use firebug to log in to Zend 1.9.x?

I use this: (using the Zend Framework man page)

// Place this in your bootstrap file before dispatching your front controller
$writer = new Zend_Log_Writer_Firebug();
$logger = new Zend_Log($writer);

// Use this in your model, view and controller files
$logger->log('This is a log message!', Zend_Log::INFO);

but it doesn’t work at all.

+3
source share
2 answers

making sure you have firephp installed, you can check these vedio for more information about ZF and Firebug || how to work with Firephp and how to debug a STEP BY STEP ajax request sample and even how to create a firebug action helper

part 1: http://www.zendcasts.com/debugging-zend-projects-with-firebug/2009/08/

2: http://www.zendcasts.com/custom-action-helpers-for-firebug/2009/08/

,

+3

: FirePHP Firebug?:)

+1

Source: https://habr.com/ru/post/1717501/


All Articles