FireBug didn't working.
Posted
by Nano HE
on Stack Overflow
See other posts from Stack Overflow
or by Nano HE
Published on 2010-04-20T06:48:47Z
Indexed on
2010/04/20
6:53 UTC
Read the original article
Hit count: 418
Hi, 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
$firephp = FirePHP::getInstance(true);
# //send information
$firephp->fb("Hello world!");
?>
I enabled fireBug and firePHP, BTW I download firePHPCore and copy FirePHP.class.php to http://localhost/home/FirePHP.class.php directory.
To run this code I can't see the message “Hello world!” in the firebug console:
I followed the tutorial http://yensdesign.com/2008/10/how-to-debug-php-code/
Any suggesion?
© Stack Overflow or respective owner