diff options
Diffstat (limited to 'config.inc.php.example')
-rw-r--r-- | config.inc.php.example | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.inc.php.example b/config.inc.php.example index 47e314e..a8aa847 100644 --- a/config.inc.php.example +++ b/config.inc.php.example @@ -15,6 +15,7 @@ $usecache = false; # use cache ? {true,false} $dir_cache = dirname(__FILE__) .'/cache/'; # directory where cache files will be stored $cleanurls = false; # Use mod_rewrite to hide PHP extensions {true,false[default]} # be cautious, doesn't work for all hosts, you may need to modify the .htaccess file +$debugMode = false; # if true, show debug messages #### Database #### $dbtype = 'mysql4'; # Database driver {mysql, mysqli, mysql4, oracle, postgres, sqlite, db2, firebird, mssql, mssq-odbc} @@ -85,5 +86,5 @@ $menu2Tags = array('example', 'of', 'menu', 'tags'); # list of tags used by menu $sizeSearchHistory = 10; # number of users' searches that are saved {1..10[Default]..-1[Unlimited]} $enableGoogleCustomSearch = true; #Enable Google Search Engine into "gsearch/" folder -include_once('debug.inc.php'); + ?> |