|
From: Benjamin C. <bc...@us...> - 2001-12-15 18:45:52
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv31105
Modified Files:
config-dist.php
Log Message:
More comments, remove PHPLIB_PATH
Index: config-dist.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config-dist.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- config-dist.php 2001/12/14 14:40:19 1.3
+++ config-dist.php 2001/12/15 18:45:48 1.4
@@ -21,18 +21,17 @@
// ------------------------------------------------------------------------
// $Id$
-define ('PHPLIB_PATH', ''); // If PHPlib is not in your include path
-
// Database Config
-define ('DB_TYPE', '{db_type}'); // using PHPlib file naming
-define ('DB_HOST', '{db_host}');
-define ('DB_DATABASE', '{db_database}');
-define ('DB_USER', '{db_user}');
-define ('DB_PASSWORD', '{db_pass}');
+define ('DB_TYPE', '{db_type}'); // using PHPlib file naming (mysql | pgsql)
+define ('DB_HOST', '{db_host}'); // hostname of database server
+define ('DB_DATABASE', '{db_database}'); // database name
+define ('DB_USER', '{db_user}'); // username for database connection
+define ('DB_PASSWORD', '{db_pass}'); // password for database connection
// Database Table Config
// you can change either the prefix of the table names or each table name individually
define ('TBL_PREFIX', '{tbl_prefix}'); // the prefix for all tables, leave empty to use the old style
+
define ('TBL_ACTIVE_SESSIONS', TBL_PREFIX.'active_sessions');
define ('TBL_DB_SEQUENCE', TBL_PREFIX.'db_sequence');
define ('TBL_ATTACHMENT', TBL_PREFIX.'attachment');
|