2020-12-26 01:42:23 +08:00
|
|
|
<?php
|
2021-01-11 22:00:46 +08:00
|
|
|
define('NEXUS_START', microtime(true));
|
2020-12-26 01:42:23 +08:00
|
|
|
# IMPORTANT: Do not edit below unless you know what you are doing!
|
|
|
|
|
define('IN_TRACKER', true);
|
|
|
|
|
$rootpath=realpath(dirname(__FILE__) . '/..')."/";
|
2021-01-04 14:21:15 +08:00
|
|
|
|
|
|
|
|
require $rootpath . 'include/config.php';
|
|
|
|
|
require $rootpath . 'include/functions.php';
|
|
|
|
|
require $rootpath . 'include/globalfunctions.php';
|
|
|
|
|
require $rootpath . get_langfile_path("functions.php");
|
|
|
|
|
|
|
|
|
|
require $rootpath . 'include/database/interface_db.php';
|
|
|
|
|
require $rootpath . 'include/database/class_db_mysqli.php';
|
|
|
|
|
require $rootpath . 'include/database/class_db.php';
|
|
|
|
|
require $rootpath . 'include/database/helpers.php';
|
|
|
|
|
require $rootpath . 'include/database/class_exception.php';
|
|
|
|
|
|
|
|
|
|
require $rootpath . 'classes/class_cache_redis.php';
|
|
|
|
|
|
|
|
|
|
require $rootpath . 'include/core.php';
|
|
|
|
|
require $rootpath . 'include/functions_announce.php';
|