Ошибка при установке FirePHP в Firefox
Я пытаюсь установить FirePHP в Firefox для целей отладки. Но это не сделано успешно. Я сначала скачал FirePhpCore и включил следующие файлы
/www/FirePHPCore/fb.php
/www/FirePHPCore/FirePHP.class.php
/www/FirePHPCore/LICENSE
После этого я включил require_once('FirePHPCore/FirePHP.class.php')
в index.php www. Так что теперь файл я как
<?php
// Page créé par Shepard [Fabian Pijcke] <Shepard8@laposte.net>
// Arno Esterhuizen <arno.esterhuizen@gmail.com>
// et Romain Bourdon <romain@anaska.com>
//
// icônes par Mark James <http://www.famfamfam.com/lab/icons/silk/>
require_once('FirePHPCore/FirePHP.class.php');
//chemin jusqu'au fichier de conf de WampServer
$wampConfFile = '../wampmanager.conf';
//chemin jusqu'aux fichiers alias
$aliasDir = '../alias/';
// on charge le fichier de conf locale
if (!is_file($wampConfFile))
die ('Unable to open WampServer\'s config file, please change path in index.php file');
//require $wampConfFile;
$fp = fopen($wampConfFile,'r');
--------
Но когда я пытаюсь запустить "localhost / index.php", он показывает следующий код в браузере
require_once 'FirePHP.class.php'; if($_SERVER['REMOTE_ADDR'] == "123.456.789.123"){ $GLOBALS['firephp'] = FirePHP::getInstance(true); // make an array to trace the execution of methods, functions and included files $GLOBALS['firephptrace'] = array(); global $firephp; $firephp->setEnabled(true); $options = array('maxObjectDepth' => 10, 'maxArrayDepth' => 20, 'useNativeJsonEncode' => true, 'includeLineNumbers' => true); $firephp->getOptions(); $firephp->setOptions($options); // Optionally log all errors, exceptions, and assertion errors to Firebug $firephp->registerErrorHandler($throwErrorExceptions=true); firephp->registerExceptionHandler(); $firephp->registerAssertionHandler( $convertAssertionErrorsToExceptions=true, $throwAssertionExceptions=false ); } else { $GLOBALS['firephp']->setEnabled(false); }
Может кто-нибудь помочь мне настроить этот FirePHP?