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
1
vote
1 answer

Can FirePHP be configured to tell where it's been called from when it logs?

I'm helping a colleague with a legacy, spaghetti code application. There are thousands of calls in it to $firephp->log, but we're trying to track down a particular one. Can FirePHP be configured to include, with every log statement, the location it…
Nathan Long
  • 122,748
  • 97
  • 336
  • 451
0
votes
2 answers

CakePHP 2 can't find FireCake using Debug_kit

I have been attempting to use CakePHP 2.0 and most of it works pretty well, however I have not been able to get console logging working with FireCake. I have FireBug 1.8.3 and FirePHP 0.6.2 installed in Firefox 6.0.2 and my old Cake 1.3 project…
Matt
  • 1,328
  • 1
  • 16
  • 28
0
votes
1 answer

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 jQuery post XMLHttpRequest, it does not work. I'm not too…
Tjorriemorrie
  • 16,818
  • 20
  • 89
  • 131
0
votes
3 answers

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 when my code is working in real world. Is there any…
Lai Yu-Hsuan
  • 27,509
  • 28
  • 97
  • 164
0
votes
1 answer

How to Setup and use FirePHP with FireFox Developer

I am an old school programmer so I am having issues trying to install and use some of the newer programming tools. I am building a website using php but need some suggestions on the best debugging tools that are available for PHP. I am using Visual…
0
votes
1 answer

Firebug and FirePHP: I can not get any message to console

I have added FirePHP but I can not get message from the PHP file.

Test

Humbarzel
  • 1
  • 2
0
votes
1 answer

How do I set up FirePHP version 1.0?

I love FirePHP and I've been using it for a while, but they've put out this massive upgrade and I'm completely flummoxed trying to get it to work. I think I'm copying the "Quick Start" code (kind of guessing at whatever changes are necessary for my…
jay
  • 1,524
  • 4
  • 25
  • 45
0
votes
2 answers

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 and that the amount of firePHP output grows is that…
some dude
  • 146
  • 2
  • 9
0
votes
0 answers

Debugging with FirePhp

I'm familiar with the following syntax for debugging using FirePhp: $this->firephp->log($this->db->queries); // for printing SQL queries $this->firephp->log($var); // for printing variables I wonder if their are more arguments for the log()…
RoyBar
  • 149
  • 2
  • 4
  • 14
0
votes
1 answer

Config FirePHP on laravel

I'm trying to config FirePhp on my Laravel project, I followed the instructions from here , But on the part were i should update the providers list in the console - $ php artisan config:publish p3in/firephp i get an error:…
RoyBar
  • 149
  • 2
  • 4
  • 14
0
votes
1 answer

How do I use FirePHP in class.php files?

I'm just starting to learn OOP and PSR-4 autoload class files into my project. So far so good, but I rely on FirePHP. FirePHP works fine in my main scripts, but if I try to use FirePHP within a class file it doesn't work at all:
Tubusy
  • 31
  • 1
  • 7
0
votes
1 answer

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
sica07
  • 4,896
  • 8
  • 35
  • 54
0
votes
1 answer

Chrome Postman missing wildfire headers (fire php)

I use FirePHP and FirePHP4Chrome to debug my applications, unfortunately in postman i don't see any Wildfire headars sent back along my responses. Is it possible to enable these headers and somehow use FirePHP4CHrome extension in the Postman to…
0
votes
1 answer

Magento frontend and backend page looks different

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…
itsandy
  • 2,798
  • 2
  • 17
  • 14
0
votes
1 answer

IIS Giving a 500 Internal Server Error When Serving a PHP file

I am trying to work on a project locally that uses PHP. I am using IIS 7.5 on Windows 7 with PHP 5.6.2. I was trying to set up FirePHP so I could use that to send out debug messages to the Firebug console. For the PHP portion, I followed this…
JR Smith
  • 1,186
  • 15
  • 20