diff options
Diffstat (limited to 'phpBB/config.php')
-rw-r--r-- | phpBB/config.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index e69de29bb2..26552a35fa 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -0,0 +1,19 @@ +<?php + +// +// phpBB 2.x auto-generated config file +// Do not change anything in this file! +// + +$dbms = "mysql"; + +$dbhost = "localhost"; +$dbname = "devphpbb2"; +$dbuser = "dougk"; +$dbpasswd = "dougkff7"; + +$table_prefix = "phpbb_"; + +define('PHPBB_INSTALLED', true); + +?> |