Pagina 1 van 1

Verschillen in config.php

Geplaatst: 30 jan 2021, 12:15
door nl1sms
Op mijn live forum (al sinds phpBB 2.0.x heb ik de volgende config:
<?php
// phpBB 3.0.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'mysqli';
$dbhost = 'xxx.mysql.nl';
$dbport = '';
$dbname = 'dbxxxxxxx_xx';
$dbuser = 'uxxxxxxxx_nl';
$dbpasswd = 'xxxxxxxxxx';
$table_prefix = 'phpbb3_';
$acm_type = 'file';
$load_extensions = '';

@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
?>
Op mijn test forum heb ik de volgende config: (Deze heb ik geinstalleerd met phpbb 3.3.0)
<?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 = 'xxxx_xxrxm';
$dbuser = 'xxxx_xxxxm';
$dbpasswd = 'xxxx';
$table_prefix = 'phpbb_';
$phpbb_adm_relative_path = 'adm/';
$acm_type = 'phpbb\\cache\\driver\\file';

@define('PHPBB_INSTALLED', true);
// @define('PHPBB_DISPLAY_LOAD_TIME', true);
// @define('DEBUG', true);
// @define('DEBUG_CONTAINER', true);
@define('PHPBB_DISPLAY_LOAD_TIME', true);
Waarom zit er verschil in en wat houdt dit verschil in? Moet ik

$phpbb_adm_relative_path = 'adm/';
$acm_type = 'phpbb\\cache\\driver\\file';

Bij mijn live forum toevoegen? En wat is de meerwaarde?

thx alvast.

Re: Verschillen in config.php

Geplaatst: 30 jan 2021, 13:31
door El torro
Je kan het aanpassen om problemen in de toekomst te vermijden maar het hoeft nu nog niet.