diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-05-26 21:44:29 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-05-26 21:44:29 +0200 |
commit | 17dcda30e78c13f1ca91c1f031ecd4d6445ef6a7 (patch) | |
tree | 3c83c5034a4a232a165ed0d6385da66ec06b8b6a /doc/developers/debugging.rst | |
parent | b55b3a6c670c5af99671c2d6c77cbf0d15954728 (diff) | |
download | semanticscuttle-17dcda30e78c13f1ca91c1f031ecd4d6445ef6a7.tar.gz semanticscuttle-17dcda30e78c13f1ca91c1f031ecd4d6445ef6a7.tar.bz2 |
more documentation rST fixes
Diffstat (limited to 'doc/developers/debugging.rst')
-rw-r--r-- | doc/developers/debugging.rst | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/doc/developers/debugging.rst b/doc/developers/debugging.rst index 7f84da6..6bee309 100644 --- a/doc/developers/debugging.rst +++ b/doc/developers/debugging.rst @@ -4,17 +4,21 @@ How to debug SemanticScuttle Database queries ---------------- -In config.php, enable debugMode. -Further, add the following there: -------- -register_shutdown_function( - create_function('', <<<FNC -\$GLOBALS['db'] = SemanticScuttle_Service_Factory::getDb(); -\$GLOBALS['db']->sql_report('display'); -FNC - ) -); ------- -To see database queries in SemanticScuttle, add -> ?explain=1 + +In ``data/config.php``, enable ``debugMode``. +Further, add the following afterwards: :: + + register_shutdown_function( + create_function('', <<<FNC + \$GLOBALS['db'] = SemanticScuttle_Service_Factory::getDb(); + \$GLOBALS['db']->sql_report('display'); + FNC + ) + ); + + +To see database queries in SemanticScuttle, add :: + + ?explain=1 + to your URL. |