I have added FirePHP but I can not get message from the PHP file.
<html>
<h1>Test</h1>
<?php
if ((include 'fb.php') == TRUE) {
echo 'OK';
}else{
echo "nok";
}
header("Content-type: text/HTML");
$data="my data";
var_dump($data);
ob_start();
FB::info('Hello, FirePHP');
ob_end_flush();
?>
</html>
code is stripped down and very simple. When I load the page the include message (ok) and the variable $data can be seen.
But the FB::info() does not show up in the console.
Include works so lib fb.php is included. FirePHP is enabled
I have installed FF developer and FireHP extension
What can I do?