Your config.php file will be incorrect, all you need to connect is the database name. Below is an example.
Note:
Code:
<?php// phpBB 3.3.x auto-generated configuration file// Do not change anything in this file!$dbms = 'phpbb\\db\\driver\\mysqli';$dbhost = '';$dbport = '';$dbname = 'my_data_base_name';$dbuser = 'root';$dbpasswd = '';$table_prefix = 'phpbb_';$phpbb_adm_relative_path = 'adm/';$acm_type = 'phpbb\\cache\\driver\\file';@define('PHPBB_INSTALLED', true);@define('PHPBB_ENVIRONMENT', 'production');//@define('DEBUG_CONTAINER', true);$dbname = 'my_data_base_name'; change this my_data_base_name to your database name.Statistics: Posted by Steve — Mon Dec 16, 2024 6:22 pm