// // ------------------------------------------------------------------------- // if ( !defined('XOOPS_MAINFILE_INCLUDED') ) { define('XOOPS_MAINFILE_INCLUDED', 1); // Physical Path // Physical path to your main bcoos directory WITHOUT trailing slash. ( On windows use simple forward slashes & be sure to include the drive letter. c:/myfolder ) define('XOOPS_ROOT_PATH', ''); // Virtual Path (URL) // Virtual path to your main bcoos directory WITHOUT trailing slash. ( http://www.mysite.com/myfolder ) define('XOOPS_URL', ''); // Database // Choose the type of database to be used. $bcoosConfig['database'] = 'mysql'; // Table Prefix // This prefix will be added to all new tables created to avoid name conflict in the database. If you are unsure, just use the default 'e_xoops'. $bcoosConfig['prefix'] = 'bcoos'; // Database Hostname // Hostname of the database server. ( If you are unsure, 'localhost' works in most cases. ) $bcoosConfig['dbhost'] = 'localhost'; // Database Username // Your database user account on the host. ( Often root when installed on your local machine. ) $bcoosConfig['dbuname'] = ''; // Database Password // Password for your database user account. $bcoosConfig['dbpass'] = ''; // Database Name // The name of database on the host. The installer will attempt to create the database if not exist. $bcoosConfig['dbname'] = ''; // Use persistent connection? (Yes=1 No=0) // Default is 'No'. Choose 'No' if you are unsure. $bcoosConfig['db_pconnect'] = 0; // Default setup language. $bcoosConfig['default_language'] = 'english'; if ( XOOPS_ROOT_PATH == '' ) { if ( @file_exists('_install/index.php') ) { header('Location: _install/index.php'); exit(); } } include_once(XOOPS_ROOT_PATH.'/include/common.php'); } ?>