mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
14 lines
553 B
PHP
14 lines
553 B
PHP
|
|
<?php
|
||
|
|
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;
|
||
|
|
$rootpath=realpath(dirname(__FILE__) . '/..');
|
||
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . $rootpath);
|
||
|
|
$rootpath .= "/";
|
||
|
|
include($rootpath . 'include/core.php');
|
||
|
|
include_once($rootpath . 'include/functions.php');
|