123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
-
-
-
-
- $isSecure = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') || $_SERVER['SERVER_PORT'] == 443;
-
-
- $protocol = $isSecure ? 'https://' : 'http://';
-
-
- $domainName = $_SERVER['HTTP_HOST'];
-
-
- $url = $protocol . $domainName;
-
- echo $domainName;
-
- if($domainName == 'www.zc10000.com' || $domainName == 'zc10000.com'){
- header('HTTP/1.1 301 Moved Permanently');
-
- header('Location: https://www.zc10000.com');
-
- exit();
- }
-
- header("Content-type:text/html;charset=utf-8");
-
- if (extension_loaded('zlib')){
- try{
- ob_end_clean();
- } catch(Exception $e) {
-
- }
- ob_start('ob_gzhandler');
- }
-
- if(version_compare(PHP_VERSION,'5.4.0','<')) {
- die('本系统要求PHP版本 >= 5.4.0,当前PHP版本为:'.PHP_VERSION . ',请到虚拟主机控制面板里切换PHP版本,或联系空间商协助切换。(<font color="red">注:部分虚拟主机存在缓存,切换版本后请等待半小时左右再重试安装</font>) <a href="https://www.eyoucms.com/help/azwt/2020/1012/11028.html" target="_blank">点击查看易优安装教程</a>');
- }
-
- error_reporting(E_ERROR | E_WARNING | E_PARSE);
-
-
- if(file_exists("./install/") && !file_exists("./install/install.lock")){
- if (preg_match('/^s=\/(.+)/i', $_SERVER['QUERY_STRING'])) {
- $url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
- header('Location:'.$url);
- exit();
- } else {
- header('Location:./install/index.php');
- exit();
- }
- }
-
-
- define('BIND_MODULE','admin');
-
- define('EYOUCMS_CACHE_TIME', 86400);
-
- define('DATA_PATH', __DIR__ . '/data/');
-
- define('RUNTIME_PATH', DATA_PATH . 'runtime/');
-
- define('DEFAULT_INSTALL_DATE',1525756440);
-
- define('DEFAULT_SERIALNUMBER','20180508131400oCWIoa');
-
- define('APP_PATH', __DIR__ . '/application/');
-
-
-
-
- require __DIR__ . '/core/start.php';
|