aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-23 15:25:16 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-23 15:25:16 +0000
commit2969e2f09a86b8b3196c9212c1b6793959c71713 (patch)
tree2b56a32d4280415726f637d92adbd49af2c3b4c9 /phpBB/config.php
parentb607d1d858e6828b5b04b7ebfacd2cb2bb20ce26 (diff)
downloadforums-2969e2f09a86b8b3196c9212c1b6793959c71713.tar
forums-2969e2f09a86b8b3196c9212c1b6793959c71713.tar.gz
forums-2969e2f09a86b8b3196c9212c1b6793959c71713.tar.bz2
forums-2969e2f09a86b8b3196c9212c1b6793959c71713.tar.xz
forums-2969e2f09a86b8b3196c9212c1b6793959c71713.zip
Damn it I did a Bart :)
git-svn-id: file:///svn/phpbb/trunk@731 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/config.php')
-rw-r--r--phpBB/config.php74
1 files changed, 50 insertions, 24 deletions
diff --git a/phpBB/config.php b/phpBB/config.php
index b35ee36c57..c86f982f3d 100644
--- a/phpBB/config.php
+++ b/phpBB/config.php
@@ -22,55 +22,81 @@
*
***************************************************************************/
-//putenv('SYBASE=/usr/freetds');
-//dl('sybase_ct.so');
-
// DB connection config
+//
+// Uncomment the relevant entry
+// and fill in the required details
+//
/*
//
-// ODBC - Access (remote)
+// MySQL
//
-$dbms = "odbc";
-$dbhost = "msaccess:odbctest";
+$dbms = "mysql";
+$dbhost = "";
$dbname = "";
$dbuser = "";
-$dbpasswd = "efx2KarizonaD";
+$dbpasswd = "";
*/
+/*
+//
+// PostgreSQL
+//
+$dbms = "postgres";
+$dbhost = "";
+$dbname = "";
+$dbuser = "";
+$dbpasswd = "";
+*/
+/*
//
// MSSQL
//
$dbms = "mssql";
-$dbhost = "Typhoon";
-$dbname = "dev_starstreak_net";
-$dbuser = "devhttp";
-$dbpasswd = "efx2KarizonaD";
-
+$dbhost = "";
+$dbname = "";
+$dbuser = "";
+$dbpasswd = "";
+*/
+/*
//
-// MySQL (local)
+// ODBC - Access
//
-$dbms = "mysql";
-$dbhost = "localhost";
-$dbname = "dev_starstreak_net";
-$dbuser = "devhttp";
-$dbpasswd = "efx2KarizonaD";
+$dbms = "odbc";
+$dbhost = "msaccess:<HOST HERE>";
+$dbname = "";
+$dbuser = "";
+$dbpasswd = "";
+*/
+/*
+//
+// ODBC - DB2
+//
+$dbms = "odbc";
+$dbhost = "db2:<HOST HERE>";
+$dbname = "";
+$dbuser = "";
+$dbpasswd = "";
+*/
/*
//
-// PostgreSQL (local)
+// Oracle
//
-$dbms = "postgres";
+$dbms = "oracle";
$dbhost = "";
-$dbname = "dev_starstreak_net";
-$dbuser = "devhttp";
-$dbpasswd = "efx2KarizonaD";
+$dbname = "";
+$dbuser = "";
+$dbpasswd = "";
*/
+//
// DB table prefix
+//
$table_prefix = "phpbb_";
-?>
+?> \ No newline at end of file