1
0
mirror of https://github.com/ZeroDream-CN/PHPMC7 synced 2024-11-27 23:02:52 +08:00
PHPMC7/index.php
KasuganoSoras 9aac12cfc8 修复安装程序 bug
修复安装程序的一些问题
2018-09-15 02:45:23 +08:00

15 lines
480 B
PHP

<?php
set_time_limit(10);
error_reporting(0);
$pathinfo = pathinfo($_SERVER['PHP_SELF']);
$path = str_replace("/" . $pathinfo['basename'], "", $_SERVER['PHP_SELF']);
define("ROOT", str_replace("\\", "/", __DIR__));
define("DOCROOT", $path);
if(!file_exists(ROOT . "/include/data/config.php") && !isset($_GET['installed'])) {
echo "<script>location='install/';</script>";
exit;
}
include(ROOT . "/include/loader.php");
$Loader = new Loader();
$Loader->router();
$Loader->frame();