Tagged Questions

4
votes
1answer
77 views

Firebug and FirePHP only for selected domains?

How can I automatically enable Firebug and FirePHP only for pages in selected TLD eg. *.dev? I don't see any option for this. Maybe some userscript? Also, is there any way to always start Firebug in ...
2
votes
1answer
32 views

FirePHP equivelant for Ruby on Rails

is there an FirePHP equivalent for Ruby On Rails? I would like to be able to send the value of a variable to a console and browse object properties.
2
votes
1answer
136 views

Error with output buffering and FirePHP

I get unexplained "Headers already sent on line #..." error on those 2 lines that execute "echo ..." in the code below. Simplified version of the case: <?php ob_start(); //Initializing ...
1
vote
3answers
210 views

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 ...
0
votes
3answers
107 views

How to automatically remove debug statements for FirePHP?

FirePHP asks me to add debug function call on every .php page: require_once('FirePHPCore/FirePHP.class.php'); ob_start(); It ist't a problem on my local machine. But I want to remove/disable them ...
0
votes
1answer
162 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
1answer
218 views

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

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