define('INSTALLED', false); ----- Set this true once you have done installation and before login to admin
define('DB_PREFIX', 'jatt_'); ----- Use any prefix for database tables in-case you want multiple installations in same database
define('SCRIPT_DOMAIN', 'http://localhost'); ---- Change it to your website domain. It must comtain http:// or https:// till .com or tld of your domain. e.g. https://envato.jattframework.com (Notice there is no '/' in end of domain.
if($admin){
define('SCRIPT_DIRECTORY', '/ajax/web/admin'); ---- Absolute path to admin folder on your domain
}else{
define('SCRIPT_DIRECTORY', '/ajax/web/store'); ---- Absolute path to store folder on your domain.
}
define('SYM_PRIVATE_KEY', 'HAYER');
define('CURRENCY_SYMBOL', '$');
define('CURRENCY_SYMBOL_POSITION', 'left'); ---- Currency display on right or left.
define('URL_IMG', SCRIPT_DOMAIN . '/ajax/web/store/image/'); ---- Absolute path to images folder in your domain.
Database configuration
$db_config = array(
'host' => 'localhost', //DB Host
'name' => 'dev_ajax', //DB name
'user' => 'admin',
'password' => 'admin'
);
$mail_config = array(
'from' => 'no-reply@dechangos.com',
'sender' => 'Dechangos Accounts',
'reply_to' => 'no-reply@dechangos.com',/*
'protocol' => 'smtp',
'smtp_hostname' => '',
'smtp_username' => '',
'smtp_password' => '',
'smtp_port' => '25' */
);