5976acf7d1
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@525 b3834d28-1941-0410-a4f8-b48e95affb8f
21 lines
422 B
Plaintext
21 lines
422 B
Plaintext
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
|
|
to your URL.
|