Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2630

[3.3.x] Support Forum • Re: PHPbb locally

$
0
0
Your config.php file will be incorrect, all you need to connect is the database name. Below is an example.

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);
Note: $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



Viewing all articles
Browse latest Browse all 2630

Trending Articles