Tagged Questions

2
votes
1answer
436 views

FirePHP doesn't always write log messages

I set my loggers up in my Bootstrap.php like so: $logger = new Zend_Log(); if($environment->debug == '1') { $stream = @fopen('/var/www/html/rta/rta.log','a',false); ...
2
votes
2answers
968 views

Zend Framework 1.9.x and Firebug

Anybody here can point me on the right direction on using firebug for logging on Zend 1.9.x ? I am using this : (from Zend Framework Manual page) // Place this in your bootstrap file before ...
1
vote
1answer
125 views

FirePHP does not show extras when used with Zend_Log_Writer_Firebug

I've been developing with Zend Framework for ages (since 0.9) and this problem is nagging at my nerves ever since. I want to output messages on the FireBug Console with the help of FirePHP and from a ...
1
vote
1answer
101 views

Has anyone used firephp with firefox 4 and Zend Framework DB Profiler?

I can't see the log in the console. The headers show the log, but nothing show up on the console. I've tested the Zend_Log_Writer_Firebug and everything works fine. Any tips?
1
vote
2answers
459 views

Zend_Log_Writer_Firebug() not working

I have Firefox 3.6.15, Firebug and FirePHP addons installed, console enabled. I am using Zend 1.11. The following code doesn't show anything in the firebug console. <?php ...
1
vote
1answer
97 views

FirePHP not returning ajax request queries, yet returns normal page load queries

I am using firePHP(Zend profiler) on on FF 3.6.3(firephp addon installed) and it returns queries, when I do a normal page load. Ajax requests, however, are not returning the proper queries. I am ...
1
vote
5answers
779 views

Is FirePHP limited by the Firebug console clearing upon redirect?

I am using FirePHP with Zend Framework. When the user submits a form, I wish to output some data to the Firebug console and FirePHP is perfect for the job. This all seems to work fine, except that ...
0
votes
1answer
66 views

FirePHP not working with Zend's json action helper

my FirePHP is working in Firebug 1.8. Did copy over the new core files. However, when I use the following in the action My_FirePHP::info('test'); $this->_helper->json($result); of a ...
0
votes
2answers
129 views

Best practices to review firePHP output more easily

I've implemented firePHP with ZF (http://www.christophdorn.com/Blog/2008/09/02/firephp-and-zend-framework-16/) which works like a charm. However what I'm noticing now that my application is growing ...
0
votes
1answer
161 views

Outputting an array with FirePHP

How do you output an array with FirePHP? I'm using FirePHP in a Zend Framework project. I can output the value of individual variables with: $logger->log('foo = '.$foo, Zend_Log::INFO); and see ...
0
votes
2answers
673 views

Zend Framework, FirePHP

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 ...