aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/config.php')
-rw-r--r--phpBB/config.php53
1 files changed, 43 insertions, 10 deletions
diff --git a/phpBB/config.php b/phpBB/config.php
index e55278aef6..b35ee36c57 100644
--- a/phpBB/config.php
+++ b/phpBB/config.php
@@ -22,20 +22,53 @@
*
***************************************************************************/
-// Session data
-$cookiename = "phpbb2";
-$cookiedomain = "";
-$cookiepath = "";
-$cookiesecure = "";
-$cookielife = 31536000;
-$session_length = 300;
+//putenv('SYBASE=/usr/freetds');
+//dl('sybase_ct.so');
// DB connection config
-$dbms = "mysql";
-$dbhost = "localhost";
+
+/*
+//
+// ODBC - Access (remote)
+//
+$dbms = "odbc";
+$dbhost = "msaccess:odbctest";
$dbname = "";
$dbuser = "";
-$dbpasswd = "";
+$dbpasswd = "efx2KarizonaD";
+*/
+
+
+//
+// MSSQL
+//
+$dbms = "mssql";
+$dbhost = "Typhoon";
+$dbname = "dev_starstreak_net";
+$dbuser = "devhttp";
+$dbpasswd = "efx2KarizonaD";
+
+
+//
+// MySQL (local)
+//
+$dbms = "mysql";
+$dbhost = "localhost";
+$dbname = "dev_starstreak_net";
+$dbuser = "devhttp";
+$dbpasswd = "efx2KarizonaD";
+
+
+/*
+//
+// PostgreSQL (local)
+//
+$dbms = "postgres";
+$dbhost = "";
+$dbname = "dev_starstreak_net";
+$dbuser = "devhttp";
+$dbpasswd = "efx2KarizonaD";
+*/
// DB table prefix
$table_prefix = "phpbb_";