Tagged Questions

7
votes
2answers
1k views

FirePHP Suddenly stopped working

My FirePHP modules seems to have stopped working. Instead I get this error message: ["There was a problem wri...ePHP/FirebugConsole/0.1", TypeError: node is undefined [Break On This Error] ...
4
votes
2answers
176 views

FirePHP not outputting anything

I have been trying to get FirePHP to work for an hour now. I have the latest firebug installed and it works fine. I also installed the FirePHP addon. Then I downloaded the library files and included ...
3
votes
2answers
832 views

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, ...
2
votes
1answer
31 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
135 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 ...
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
106 views

FirePHP headers not working with nginx and FPM

I have the FirePHP FireFox extionsion installed and it appears to be working. I also have take the sample code to test, but I am not getting a response. <?php require('FirePHPCore/fb.php'); ...
1
vote
1answer
126 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
102 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
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 ...
1
vote
3answers
209 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
2answers
72 views

How to view session details in php using firebug?

I'm trying to figure out I how can do something like: console.log('<?php print_r($_SESSION); ?>'); To see the results in the console. console.log('<?php echo serialize($_SESSION); ...
0
votes
0answers
28 views

Using FirePHP within the wordpress admin

Apparently in the wordpress admin code it will clear the headers and / or the contents of ob_* buffers and this seems to break firePHP which has already set headers. Does anybody know of a way to use ...
0
votes
3answers
173 views

Why am I not seeing any firephp output?

I am trying to get firephp to work. It was working as of last week and I don't know when exactly it stopped working or what I changed. I am now trying to do a simple firephp hello world. <?php ...
0
votes
3answers
105 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
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
1answer
131 views

FireBug didn't working

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