Files
nexusphp/include/bittorrent.php

18 lines
612 B
PHP
Raw Normal View History

2020-12-26 01:42:23 +08:00
<?php
define('NEXUS_START', microtime(true));
2020-12-26 01:42:23 +08:00
define('IN_TRACKER', true);
define("PROJECTNAME","NexusPHP");
2021-01-30 16:41:02 +08:00
define("NEXUSPHPURL","http://nexusphp.org");
define("NEXUSWIKIURL","http://doc.nexusphp.org");
2020-12-26 01:42:23 +08:00
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 .= "/";
require $rootpath . 'include/functions.php';
require $rootpath . 'include/globalfunctions.php';
require $rootpath . 'include/core.php';