diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2002-11-27 13:24:46 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2002-11-27 13:24:46 +0000 |
commit | 831c9b5a611e2591e3b79170b4e487241e2d9595 (patch) | |
tree | 6b8478fa295f93add8428c3e2ab93d3037e62a39 /phpBB/config.php | |
parent | 16e8fb800fb3b72d1c87fca829faab1cbb668f25 (diff) | |
download | forums-831c9b5a611e2591e3b79170b4e487241e2d9595.tar forums-831c9b5a611e2591e3b79170b4e487241e2d9595.tar.gz forums-831c9b5a611e2591e3b79170b4e487241e2d9595.tar.bz2 forums-831c9b5a611e2591e3b79170b4e487241e2d9595.tar.xz forums-831c9b5a611e2591e3b79170b4e487241e2d9595.zip |
Initial Lastread support. Mind the schema and config changes\!
git-svn-id: file:///svn/phpbb/trunk@3102 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/config.php')
-rw-r--r-- | phpBB/config.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index e69de29bb2..3f052a7b20 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -0,0 +1,14 @@ +<?php + +$dbms = "mysql"; +$dbhost = "localhost"; +$dbname = "phpbb"; +$dbuser = "phpbb"; +$dbpasswd = "phpbb0wn$"; + +define("PHPBB_INSTALLED", true); +$table_prefix = "phpbb_"; + +define('DEBUG', 1); + +?> |