Created
November 14, 2020 01:29
-
-
Save 3D-I/31685fd36e634f08271c4f47dbdd51ad to your computer and use it in GitHub Desktop.
phpBB Functional test config example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// This file should be located as: tests/test_config.php | |
// So it will be placed after the RUNNING_TESTS.md file. | |
$dbms = 'phpbb\\db\\driver\\mysqli'; # Change this when needed | |
$dbhost = 'localhost'; | |
$dbport = ''; | |
$dbname = 'db_name'; # Change this | |
$dbuser = 'db_username'; # Change this | |
$dbpasswd = 'db_password'; # Change this | |
$table_prefix = 'phpbb_'; | |
$phpbb_adm_relative_path = 'adm/'; | |
$acm_type = 'phpbb\\cache\\driver\\file'; | |
$phpbb_functional_url = 'http://localhost/phpBB3/'; # Change this when needed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment