diff options
Diffstat (limited to 'doc/developers/debugging.rst')
| -rw-r--r-- | doc/developers/debugging.rst | 24 | 
1 files changed, 24 insertions, 0 deletions
| diff --git a/doc/developers/debugging.rst b/doc/developers/debugging.rst new file mode 100644 index 0000000..6bee309 --- /dev/null +++ b/doc/developers/debugging.rst @@ -0,0 +1,24 @@ +How to debug SemanticScuttle +============================ + + +Database queries +---------------- + +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. | 
