Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. // 检查是否使用HTTPS
  14. $isSecure = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') || $_SERVER['SERVER_PORT'] == 443;
  15. // 获取协议
  16. $protocol = $isSecure ? 'https://' : 'http://';
  17. // 获取域名
  18. $domainName = $_SERVER['HTTP_HOST'];
  19. // 完整的URL
  20. $url = $protocol . $domainName;
  21. echo $domainName; // 输出当前域名的完整URL
  22. if($domainName == 'www.zc10000.com' || $domainName == 'zc10000.com'){
  23. header('HTTP/1.1 301 Moved Permanently');
  24. // 设置新的位置为主页URL
  25. header('Location: https://www.zc10000.com');
  26. // 确保之后的代码不会执行
  27. exit();
  28. }
  29. header("Content-type:text/html;charset=utf-8");
  30. // [ 应用入口文件 ]
  31. if (extension_loaded('zlib')){
  32. try{
  33. ob_end_clean();
  34. } catch(Exception $e) {
  35. }
  36. ob_start('ob_gzhandler');
  37. }
  38. // 检测PHP环境
  39. if(version_compare(PHP_VERSION,'5.4.0','<')) {
  40. die('本系统要求PHP版本 >= 5.4.0,当前PHP版本为:'.PHP_VERSION . ',请到虚拟主机控制面板里切换PHP版本,或联系空间商协助切换。(<font color="red">注:部分虚拟主机存在缓存,切换版本后请等待半小时左右再重试安装</font>)&nbsp;<a href="https://www.eyoucms.com/help/azwt/2020/1012/11028.html" target="_blank">点击查看易优安装教程</a>');
  41. }
  42. // error_reporting(E_ALL ^ E_NOTICE);//显示除去 E_NOTICE 之外的所有错误信息
  43. error_reporting(E_ERROR | E_WARNING | E_PARSE);//报告运行时错误
  44. // 检测是否已安装EyouCMS系统
  45. if(file_exists("./install/") && !file_exists("./install/install.lock")){
  46. if (preg_match('/^s=\/(.+)/i', $_SERVER['QUERY_STRING'])) {
  47. $url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
  48. header('Location:'.$url);
  49. exit();
  50. } else {
  51. header('Location:./install/index.php');
  52. exit();
  53. }
  54. }
  55. // 绑定当前访问到admin模块
  56. define('BIND_MODULE','admin');
  57. // 缓存时间
  58. define('EYOUCMS_CACHE_TIME', 86400);
  59. // 数据绝对路径
  60. define('DATA_PATH', __DIR__ . '/data/');
  61. // 运行缓存
  62. define('RUNTIME_PATH', DATA_PATH . 'runtime/');
  63. // 安装程序定义
  64. define('DEFAULT_INSTALL_DATE',1525756440);
  65. // 序列号
  66. define('DEFAULT_SERIALNUMBER','20180508131400oCWIoa');
  67. // 定义应用目录
  68. define('APP_PATH', __DIR__ . '/application/');
  69. //https://www.zc10000.com/login.php?s=Admin/login
  70. // 加载框架引导文件
  71. require __DIR__ . '/core/start.php';