/home/cp181240/public_html/mystric.com/config.php
<?php
/*
 * The init header php
 */
include('apps/init.php');

/*
 * The setting up path fil sqlite in site
 */
define('PATH_DB','apps/classes/db/onepage.db');

/*
 * load helper function
 */
include('apps/functions.inc.php');

/*
 * load all class in website
 */
include('apps/classes/load.php');

/*
 * define root website
 */
define('ROOT',$_FULL_DOMAIN_NAME.'/');

/*
 * define theme path in website
 */
define('THEME_ROOT','themes/'.$_THEME_ID.'/');


define('INCLUDE_LAYOUT',THEME_ROOT.'index.php');

/*
 * define path assets file in website
 */
define('_ASSETS','assets');

/*
 * define path filemanager in website
 */
define('_FILES','files');

/*
 * debug mode
 */
define('_DEBUG',false);

/*
 * load all class in website
 */
include('apps/loadfile.php');

?>