0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
2.4.1-2
/
standard
/
htdocs
/
conf
/
[
Home
]
File: _config.php
<?php /** * This is b2evolution's main config file, which just includes all the other * config files. * * This file should not be edited. You should edit the sub files instead. * * See {@link _basic_config.php} for the basic settings. * * @package conf */ if( defined('EVO_CONFIG_LOADED') ) { // This makes sure the config does not get loaded twice in Windows (when the /conf file is in a path containing Capitals like /Blog/conf) return; } define( 'EVO_CONFIG_LOADED', true ); require_once dirname(__FILE__).'/_basic_config.php'; // basic settings if( file_exists(dirname(__FILE__).'/_config_TEST.php') ) { // Put testing conf in there (For testing, you can also set $install_password here): include_once dirname(__FILE__).'/_config_TEST.php'; // FOR TESTING / DEVELOPMENT OVERRIDES } require_once dirname(__FILE__).'/_advanced.php'; // advanced settings require_once dirname(__FILE__).'/_locales.php'; // locale settings require_once dirname(__FILE__).'/_formatting.php'; // formatting settings require_once dirname(__FILE__).'/_admin.php'; // admin settings require_once dirname(__FILE__).'/_stats.php'; // stats/hitlogging settings require_once dirname(__FILE__).'/_application.php'; // application settings if( file_exists(dirname(__FILE__).'/_overrides_TEST.php') ) { // Override for testing in there: include_once dirname(__FILE__).'/_overrides_TEST.php'; // FOR TESTING / DEVELOPMENT OVERRIDES } ?>