From: <tr...@us...> - 2002-09-08 13:19:03
|
Update of /cvsroot/basedb/basedb In directory usw-pr-cvs1:/tmp/cvs-serv20157 Modified Files: example_config.inc.php Log Message: Added config item 'RDBMS' Index: example_config.inc.php =================================================================== RCS file: /cvsroot/basedb/basedb/example_config.inc.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** example_config.inc.php 30 Jul 2002 16:57:34 -0000 1.4 --- example_config.inc.php 8 Sep 2002 13:19:00 -0000 1.5 *************** *** 30,34 **** $config["sessionTimeout"] = 900; ! // MySQL details: Host, user, password, main database, database for // dynamic tables (can be the same as the main database, but it's not // recommended as it'll get awfully cluttered). --- 30,38 ---- $config["sessionTimeout"] = 900; ! // What relational database management system to use. ! // Possible values: mysql, pgsql ! $config["RDBMS"] = "mysql"; ! ! // Database settings: Host, user, password, main database, database for // dynamic tables (can be the same as the main database, but it's not // recommended as it'll get awfully cluttered). |