Skip to content

Instantly share code, notes, and snippets.

@3D-I
Created November 14, 2020 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3D-I/31685fd36e634f08271c4f47dbdd51ad to your computer and use it in GitHub Desktop.
Save 3D-I/31685fd36e634f08271c4f47dbdd51ad to your computer and use it in GitHub Desktop.
phpBB Functional test config example
<?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