Questions tagged [firephp]

FirePHP is a plugin, for the Firebug add-on, that provides non-invasive logging from PHP programs to the Firebug Console. FirePHP is ideally suited for Ajax development where clean JSON and XML responses are required.

FirePHP is a plugin, for the Firebug add-on, that provides non-invasive logging from PHP programs to the Firebug Console.

FirePHP is ideally suited for Ajax development where clean JSON and XML responses are required, as all data is sent via response headers and will not interfere with the content on your page.

Links:

74 questions
2
votes
2 answers

How to view session details in php using firebug?

I'm trying to figure out I how can do something like: console.log(''); To see the results in the console. console.log(''); does not work either. Is there a way for me to echo the…
Patrioticcow
  • 26,422
  • 75
  • 217
  • 337
2
votes
6 answers

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.…
Matt
  • 3,778
  • 2
  • 28
  • 32
2
votes
1 answer

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:
PatlaDJ
  • 1,226
  • 2
  • 17
  • 31
2
votes
2 answers

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.
Nandini Bhaduri
  • 1,835
  • 4
  • 18
  • 31
2
votes
2 answers

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…
rg88
  • 20,742
  • 18
  • 76
  • 110
2
votes
1 answer

Printing debug output into browser console in Symfony 2

Could you suggest how to print any debug data into browser console in Symfony 2? Especially, is it possible to implement with Symfony VarDumper Component? In Zend Framework you can use tool Zend_Log_Writer_Firebug to do so which is very helpful.…
Max Chernopolsky
  • 617
  • 6
  • 17
2
votes
1 answer

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…
ashurexm
  • 6,209
  • 3
  • 45
  • 69
2
votes
1 answer

FirePHP does not show some logs in console

I want to output a simple string in Firebug Console with FirePHP. I have a simple test in index.php: require_once('../system/lib/FirePHPCore/FirePHP.class.php'); $firephp = FirePHP::getInstance(true); $var = array('i'=>10,…
user2285323
  • 119
  • 1
  • 11
2
votes
0 answers

Why does Firebug delay console output?

I have a simple promise based $.ajax post loop. The code works as expected, so I am just curious. (All data is shown in the console after the done() function was executed). However Firebug displays data from the PHP script after the output of the…
Grushton94
  • 603
  • 1
  • 7
  • 17
2
votes
1 answer

How to use FirePHP-Core Dependency

I've added FirePHPCore to my composer.js dependencies and pulled them down, and installed the FirePHP Chrome plugin, but I still can't seem to log to Chrome's console. I've only just started using Laravel and Composer, where previously I was using…
mtpultz
  • 17,267
  • 22
  • 122
  • 201
2
votes
6 answers

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…
Peter Howe
  • 1,403
  • 2
  • 16
  • 30
2
votes
2 answers

How do I send FirePHP output to a file instead of the Firebug console?

How do I send all the FirePHP output to a file instead of the Firebug console? Essentially once a site is deployed, I would like to 'flick the switch' and for the output to be sent to a log file instead of a development console.
Chris
  • 54,599
  • 30
  • 149
  • 186
1
vote
3 answers

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…
KdgDev
  • 14,299
  • 46
  • 120
  • 156
1
vote
1 answer

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.
Xeoncross
  • 55,620
  • 80
  • 262
  • 364
1
vote
1 answer

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 Zend Framework 1.11 Application. I've configured…
Lars
  • 5,757
  • 4
  • 25
  • 55