firephp

Where am I supposed to see FirePHP output?

Ok, so I am finally trying out FirePHP. I installed it and restarted firefox, enabled firebug for my localhost, moved the demo oo.php file that comes with the download into an IIS virtual directory, changed the include path, removed the apache_request_headers() call since I am running IIS and the only output I see? Notice: Undefined...

Trouble understanding Firephp

I don't get FirePhp FirePhp is an extension for the Firefox add-on Firebug. I don't get why this should be used at all. How can this tool give me more than your everyday PHP debugger? Seriously? I don't understand how to implement this, can someone please explain... video with narration perhaps? ...

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 dispatching your front controller $writer = new Zend_Log_Writer_Firebug(); $logger = new Zend_Log($writer); // Use this in your model, view and co...

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 check FirePHP. Bootstrap : protected function _initActionHelper() { $writer = new Zend_Log_Writer_Firebug(); $logger = new Zend_Log($writ...

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 when my server code processes the form, it then redirects to another page - using Zend's _redirect() - causing Firebug to clear the console....

Helping using FirePHP to debug a .php application

Hi, just set up FirePHP and using a framework called Qcodo / Qcubed. Has anyone heard of these on SO? Been having challenges debugging -- trying to do a fairly simple new() and save() and then output via Ajax but not getting any kind of responsiveness from errors. Any help for us, two of us have checked it out but can't seem to get a ...

Where do you include FirePHP in Wordpress?

I'm using require_once() in header.php to include the FirePHP library. In the page.php I'm doing the usual... $firephp = FirePHP::getInstance(true); $firephp->log($categories); Getting these errors.. 'Headers already sent....' and Cannot send log data to FirePHP. You must have Output Buffering enabled via ob_start() or output_buff...

Debugging javascript with eclipse

What is the best way to debug javascript from the eclipse IDE. I used "logging to console" features of firebug with firephp installed on top of it for debugging a kohana php project along with eclipse but they make the browser unstable when I make extensive use of jQuery. For example, "Permission denied to...a non-chrome context..." is ...

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 using Prototype 1.6.0.2 for ajax requests. Is there something I am missing? Most of the write-ups seem to imply that this should work by def...

FireBug didn't working.

Hi, I created a index.php file located in http://localhost/home/index.php. The file filled with the code below. <?php # //include the file require_once("FirePHP.class.php"); # //create the object $firephp = FirePHP::getInstance(true); # //send information $firephp->fb("Hello world!"); ?> I enabled fireBug and firePHP, BT...

Magento frontend and backend page looks different

Hi All, I am a newb in magento and recently started looking at it to create a store for my client. I am not sure but i tried installing firephp extension and soon after that I’m having my screen looks like the screenshot. ** please check the link provided! Do I have to make any installations to get everything working as normal or what ...

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); if(!$stream){ throw new Exception('Failed to open log stream'); } $writer = new Zend_Log_Writer_Stream($stream); $logger->addWriter(...

How to print debug messages in Firebug Lite (Google Chrome extension)? [solved]

Does anyone know how to log to Firebug Lite Console using a simple PHP method call to print debug messages (something like the Firephp class for Firebug, in Firefox)? Thanks ...

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 something like: foo = "Ponies!" However if $foo is an array I only see: foo = Array and the word Array is not clickable or hoverable or...