diff options
Diffstat (limited to 'phpBB/config.php')
-rw-r--r-- | phpBB/config.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index e69de29bb2..fcfbc98bc2 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -0,0 +1,17 @@ +<?php +// phpBB 3.0.x auto-generated configuration file +// Do not change anything in this file! +$dbms = 'mysqli'; +$dbhost = ''; +$dbport = ''; +$dbname = 'phpbb'; +$dbuser = 'root'; +$dbpasswd = 'testing'; +$table_prefix = 'phpbb_'; +$acm_type = 'file'; +$load_extensions = ''; + +@define('PHPBB_INSTALLED', true); +@define('DEBUG', true); +@define('DEBUG_EXTRA', true); +?> |