SiteBar 3 Troubleshooting
=========================

In  case  of  some  strange  behavior,  or  even   blank   screens   open   file
../inc/errorhandler.inc.php (relative path to this folder)  and  uncomment  line
containing:

    define("SHOW_PHP_ERRORS", true);

For dumping information use method ErrorHandler::dump($variable),  in  order  to
get some logging use ErrorHandler::log(), in this case define path  to  the  log
again in file ../inc/errorhandler.inc.php:

    define("LOG_FILE_PATH", "sitebar.log");

All classes with exception of Localizer are subclasses of ErrorHandler  so,  the
static dump and log functions can be called via $this->dump() and  $this->log().

All errors and warnings are written to the log file as well. HTTP  communication
can be logged using switch in ../inc/pageparser.inc.php:

    define ( "LOG_HTTP" , true);