[pLog-svn] r4965 - plog/branches/lifetype-1.3-postgres/config
oscar at devel.lifetype.net
oscar at devel.lifetype.net
Sat Mar 3 19:05:34 EST 2007
Author: oscar
Date: 2007-03-03 19:05:34 -0500 (Sat, 03 Mar 2007)
New Revision: 4965
Modified:
plog/branches/lifetype-1.3-postgres/config/config.properties.php
Log:
Sorry, this is the right version of the configuration file.
Modified: plog/branches/lifetype-1.3-postgres/config/config.properties.php
===================================================================
--- plog/branches/lifetype-1.3-postgres/config/config.properties.php 2007-03-04 00:04:33 UTC (rev 4964)
+++ plog/branches/lifetype-1.3-postgres/config/config.properties.php 2007-03-04 00:05:34 UTC (rev 4965)
@@ -26,12 +26,13 @@
# (note, if upgrading between minor releases:
# 1.0 to 1.0.1, etc. you shouldn't run the wizard)
-$config['db_host'] = 'localhost';
-$config['db_username'] = 'lifetype';
-$config['db_password'] = 'lifetype';
-$config['db_database'] = 'trunk5';
+$config["db_host"] = "";
+$config["db_username"] = "";
+$config["db_password"] = "";
+$config["db_database"] = "";
+$config["db_driver"] = "";
$config["db_persistent"] = true;
-$config['db_character_set'] = 'default';
+$config["db_character_set"] = "default";
#
# the database prefix will be appended to the name of each database tables in case you want
@@ -40,5 +41,14 @@
# coexist in the same unique database. If you change this after the initial configuration done
# with the installation wizard, please make sure that you also rename the tables.
#
-$config['db_prefix'] = 'lt_';
+$config["db_prefix"] = "";
+
+#
+# This array is used to pass driver-specific parameters. Currently the only supported
+# one is enable_fulltext_search, that informs the MySQL driver that FULLTEXT indexes
+# can be used to speed up searches. It's disabled by default as it does not work with
+# languages such as Chinese or Japanese. In all other cases, you probably want to enable
+# this for performance reasons (searches are lot faster if using the FULLTEXT indexes)
+#
+$config["db_options"] = Array( "enable_mysql_fulltext_search" => false );
?>
\ No newline at end of file
More information about the pLog-svn
mailing list