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
|
|
|
define('IN_TRACKER', true);
|
|
|
|
|
define("PROJECTNAME","NexusPHP");
|
|
|
|
|
define("NEXUSPHPURL","http://www.nexusphp.com");
|
|
|
|
|
define("NEXUSWIKIURL","http://www.nexusphp.com/wiki");
|
|
|
|
|
define("VERSION","Powered by <a href=\"aboutnexus.php\">".PROJECTNAME."</a>");
|
|
|
|
|
define("THISTRACKER","General");
|
|
|
|
|
$showversion = " - Powered by ".PROJECTNAME;
|
2021-01-13 19:32:26 +08:00
|
|
|
$rootpath= dirname(__DIR__);
|
2020-12-26 01:42:23 +08:00
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . $rootpath);
|
|
|
|
|
$rootpath .= "/";
|
2021-01-12 21:14:02 +08:00
|
|
|
require $rootpath . 'include/functions.php';
|
|
|
|
|
require $rootpath . 'include/globalfunctions.php';
|
2020-12-26 20:09:15 +08:00
|
|
|
require $rootpath . 'include/core.php';
|
2021-01-12 21:14:02 +08:00
|
|
|
|
|
|
|
|
|