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_buffering ini directive...

I figured the using require_once in the template's header.php (above all HTML output) would be safe (pre header output). Guess this is not the case.

Anyone have experience with this? (P.S. I tried the WP FirePHP plugin, wasn't working right)

link|improve this question

62% accept rate
Which header.php do you mean, the one in the template? – Pekka Mar 28 '10 at 15:16
feedback

1 Answer

up vote 1 down vote accepted

FirePHP uses the output headers to transfer debugging data to the browser. So the require_once() statement is not the problem, but the fact that you do logging in page.php, at which point HTML has already been output. Not only do you need to include FirePHP before any content has been sent - you need to also do all logging before sending content as well.

The usual workaround is to hold any output to the browser using output buffering and the ob_* family of functions. That enables you to send out headers even though echo() commands (and the likes) have already been issued.

I am guessing doing all this safely is what the WP_FirePHP plugin was made for. I would recommend taking a second look at that plugin.

link|improve this answer
Ok, I see thanks alot! – Gnee Mar 28 '10 at 19:27
Changing the output_buffering directive to On in php.ini did the trick for me. (also I was using the wp-firephp plugin for Wordpress) – leeand00 Feb 1 '11 at 0:05
apparently in the wordpress admin section it will clear the headers and / or the contents of ob_* and so this sometimes appears to break FirePHP – cwd Oct 16 '11 at 23:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.