diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-18 13:35:43 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-18 13:35:43 +0000 |
commit | e22ee2247022fcf60376aa056cb48212b2775057 (patch) | |
tree | 6d00eab5858f13199c891bb33dbd118398c07e70 /phpBB/config.php | |
parent | 502e4aceeae897a2098d22042a1ce7cb8dfdeb1b (diff) | |
download | forums-e22ee2247022fcf60376aa056cb48212b2775057.tar forums-e22ee2247022fcf60376aa056cb48212b2775057.tar.gz forums-e22ee2247022fcf60376aa056cb48212b2775057.tar.bz2 forums-e22ee2247022fcf60376aa056cb48212b2775057.tar.xz forums-e22ee2247022fcf60376aa056cb48212b2775057.zip |
Loads'a changes including fix for security issue, thanks to Matthijs for checking this out and confirming
git-svn-id: file:///svn/phpbb/trunk@2305 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/config.php')
-rw-r--r-- | phpBB/config.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index e69de29bb2..a8a5221ab3 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -0,0 +1,51 @@ +<?php + +// +// phpBB 2.x auto-generated config file +// Do not change anything in this file! +// + +$dbms = "mysql4"; +$dbhost = "localhost"; +$dbname = "dev_starstreak_net"; +$dbuser = "devhttp"; +$dbpasswd = "efx2KarizonaD"; + +$dbhost = "localhost"; +$dbname = "phpbb_com"; +$dbuser = "devhttp"; +$dbpasswd = "efx2KarizonaD"; + +/* +$dbhost = "localhost"; +$dbname = "phpbb_test"; +$dbuser = "devhttp"; +$dbpasswd = "efx2KarizonaD"; + +$dbms = "mssql-odbc"; + +$dbhost = "mssql_phpbb_odbc"; +$dbname = ""; +$dbuser = "phpbb"; +$dbpasswd = "efx2000"; + +$dbms = "msaccess"; + +$dbhost = "phpbb_test_msaccess_odbc"; +$dbname = ""; +$dbuser = "devhttp"; +$dbpasswd = "efx2KarizonaD"; + +$dbms = "mssql"; + +$dbhost = "localhost"; +$dbname = "phpbb"; +$dbuser = "phpbb"; +$dbpasswd = "efx2000"; +*/ + +$table_prefix = "phpbb_"; + +define('PHPBB_INSTALLED', true); + +?>
\ No newline at end of file |