-
Bug
-
Resolution: Won't Fix
-
Major
-
3.1.0-b1
-
None
The config.php files are very different between a 3.0.12 board updated to 3.1-b1 vanilla install!
3.1-b1 vanilla:
<?php
|
// phpBB 3.1.x auto-generated configuration file
|
// Do not change anything in this file!
|
$dbms = 'phpbb\\db\\driver\\mysqli';
|
$dbhost = 'localhost';
|
$dbport = '';
|
$dbname = 'ascreus_test';
|
$dbuser = 'root';
|
$dbpasswd = 'root';
|
$table_prefix = 'phpbb_';
|
$phpbb_adm_relative_path = 'adm/';
|
$acm_type = 'phpbb\\cache\\driver\\file';
|
|
@define('PHPBB_INSTALLED', true);
|
@define('DEBUG', true);
|
3.0.12 converted to 3.1-b1
<?php
|
// phpBB 3.0.x auto-generated configuration file
|
// Do not change anything in this file!
|
$dbms = 'mysql';
|
$dbhost = 'localhost';
|
$dbport = '';
|
$dbname = 'ascreus_test';
|
$dbuser = 'root';
|
$dbpasswd = 'root';
|
$table_prefix = 'phpbb_';
|
$acm_type = 'file';
|
$load_extensions = '';
|
|
@define('PHPBB_INSTALLED', true);
|
@define('DEBUG', true);
|
@define('DEBUG_EXTRA', true);
|
?>
|
Major differences:
$dbms
$acm_type
$phpbb_adm_relative_path (does not exist in 3.0.12 convert)
$load_extensions (does not exist in 3.1-b1 vanilla)
@define('DEBUG_EXTRA', true); (does not exist in 3.1-b1 vanilla)