aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-23 15:23:47 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-23 15:23:47 +0000
commitb607d1d858e6828b5b04b7ebfacd2cb2bb20ce26 (patch)
tree47bd67ba6d2728f8db947deb8f8e17857b5a79b2 /phpBB/config.php
parent5a3dbda86a5f683b7de1bc989358732c29dd80a6 (diff)
downloadforums-b607d1d858e6828b5b04b7ebfacd2cb2bb20ce26.tar
forums-b607d1d858e6828b5b04b7ebfacd2cb2bb20ce26.tar.gz
forums-b607d1d858e6828b5b04b7ebfacd2cb2bb20ce26.tar.bz2
forums-b607d1d858e6828b5b04b7ebfacd2cb2bb20ce26.tar.xz
forums-b607d1d858e6828b5b04b7ebfacd2cb2bb20ce26.zip
Various updates to session code inc. moving data away from config
git-svn-id: file:///svn/phpbb/trunk@730 89ea8834-ac86-4346-8a33-228a782c2dd0
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_";