Verschillen in config.php

Hulp nodig bij je installatie of kom je ergens niet uit?
Probeer phpBB3.3! Problemen lossen we samen met je op.
Plaats reactie
Gebruikersavatar
nl1sms
Berichten: 822
Lid geworden op: 12 mei 2005, 16:11
Locatie: Zaanstad

Verschillen in config.php

Bericht door nl1sms » 30 jan 2021, 12:15

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.

Gebruikersavatar
El torro
Berichten: 4172
Lid geworden op: 02 sep 2014, 21:28
Locatie: In het zonnige zuiden
Contacteer:

Re: Verschillen in config.php

Bericht door El torro » 30 jan 2021, 13:31

Je kan het aanpassen om problemen in de toekomst te vermijden maar het hoeft nu nog niet.

Plaats reactie