<?php
/**
* ProjectPress configuration file
*
* @package ProjectPress
* @since 2.0
*/
// When system was installed?
$system = array();
$system['title'] = '{product}';
$system['company'] = '{company}';
$system['version'] = '{version}';
$system['installed'] = '{datenow}';
// Old Database connection for backwards compatibility
$myConfig = array();
$myConfig['db_hostname'] = '{hostname}';
$myConfig['db_database'] = '{database}';
$myConfig['db_username'] = '{username}';
$myConfig['db_password'] = '{password}';
define('DB_HOST','{hostname}');
define('DB_NAME','{database}');
define('DB_USER','{username}');
define('DB_PASS','{password}');
//prefix for database tables. Caution: do not change this.
define('DB', '{dbprefix}');
/*End database settings*/
/*Set the settings below for your install*/
// Set the absolute path of your install, make sure to include trailing slash '/'
define('PM_DIR', '{sitepath}');
// Set the url to your install, *do not* include the trailing slash '/'
define('PM_URI', '{siteurl}');
// Allow users to upload an avatar
define('UPLOAD_AVATAR', TRUE);
/* Registration Type (Automatic or Manual)
1 -> Automatic Registration (Users will receive activation code and they will be automatically approved after clicking activation link)
0 -> Manual Approval (Users will not receive activation code and you will need to approve every user manually)
*/
$user_registration = 1; // set 0 or 1
/*************** reCAPTCHA KEYS****************/
//$publickey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
//$privatekey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
// Basic Administrator information
$admin = array();
$admin['admin_email'] = '{admin_email}';