index.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php
  2. require_once("global.php");
  3. if(file_exists("lock.php"))
  4. {
  5. error("安程程序已经锁定!如果您要重新安装,请删除 lock.php 文件!");
  6. }
  7. if(!file_exists("install.sql"))
  8. {
  9. error("缺少安装文件:install.sql,请检查!");
  10. }
  11. //判断是否支持附件上传
  12. $act = safe_html($act);
  13. if(!$act)
  14. {
  15. $ifupload = get_cfg_var("upload_max_filesize");
  16. if(function_exists("gd_info"))
  17. {
  18. $gd = gd_info();
  19. $gdinfo = $gd["GD Version"];
  20. }
  21. else
  22. {
  23. $gdinfo = "不支持";
  24. }
  25. $tpl->display("index.html");
  26. }
  27. elseif($act == "setconfig")
  28. {
  29. $site_url = base_url();
  30. $site_url = str_replace(strstr($site_url,"install/"),"",$site_url);
  31. $tpl->display("setconfig.html");
  32. }
  33. elseif($act == "save")
  34. {
  35. $tmp_type = safe_html($db_type);
  36. $db_type_array = explode(":",$tmp_type);
  37. $db_type = $db_type_array[0];
  38. $db_engine = $db_type_array[1];
  39. $db_host = safe_html($db_host);
  40. $db_port = safe_html($db_port);
  41. if(!$db_port)
  42. {
  43. $db_port = "3306";
  44. }
  45. $db_user = safe_html($db_user);
  46. $db_pass = safe_html($db_pass);
  47. $db_data = safe_html($db_data);
  48. if(!$db_data)
  49. {
  50. error("数据库名称不允许为空","index.php?act=setconfig");
  51. }
  52. $prefix = "lyfz_";//safe_html($prefix) ? safe_html($prefix) : "qinggan_";
  53. if(substr($prefix,-1) != "_")
  54. {
  55. $prefix .= "_";
  56. }
  57. include_once("../libs/db_engine/".$db_engine.".php");
  58. $tmp_config = array();
  59. $tmp_config["host"] = $db_host;
  60. $tmp_config["port"] = $db_port;
  61. $tmp_config["user"] = $db_user;
  62. $tmp_config["pass"] = $db_pass;
  63. //$tmp_config["data"] = $db_data;
  64. $tmp_config["data"] = "";//先清空
  65. $tmp_config["prefix"] = $prefix;
  66. $cls_name = "db_".$db_engine;
  67. $db = new $cls_name($tmp_config);
  68. if(!$db->connect($db_data))
  69. {
  70. error("无法连接到数据库上,请检查配置是否正确...","index.php?act=setconfig");
  71. }
  72. $tmp_config["data"] = $db_data;
  73. $cache_type = safe_html($cache_type);
  74. $cache_time = safe_html($cache_time);
  75. $cache_server = safe_html($cache_server);
  76. $cache_port = safe_html($cache_port);
  77. $content = file_get_contents("../app/database.config.php");
  78. $content = preg_replace("/[$]_db_config\[\"type\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"type\"] = \"".$db_type."\";",$content);
  79. $content = preg_replace("/[$]_db_config\[\"engine\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"engine\"] = \"".$db_engine."\";",$content);
  80. $content = preg_replace("/[$]_db_config\[\"host\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"host\"] = \"".$db_host."\";",$content);
  81. $content = preg_replace("/[$]_db_config\[\"port\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"port\"] = \"".$db_port."\";",$content);
  82. $content = preg_replace("/[$]_db_config\[\"user\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"user\"] = \"".$db_user."\";",$content);
  83. $content = preg_replace("/[$]_db_config\[\"pass\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"pass\"] = \"".$db_pass."\";",$content);
  84. $content = preg_replace("/[$]_db_config\[\"data\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"data\"] = \"".$db_data."\";",$content);
  85. $content = preg_replace("/[$]_db_config\[\"prefix\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"prefix\"] = \"".$prefix."\";",$content);
  86. $content = preg_replace("/[$]_db_config\[\"cache_type\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"cache_type\"] = \"".$cache_type."\";",$content);
  87. $content = preg_replace("/[$]_db_config\[\"cache_server\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"cache_server\"] = \"".$cache_server."\";",$content);
  88. $content = preg_replace("/[$]_db_config\[\"cache_port\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"cache_port\"] = \"".$cache_port."\";",$content);
  89. $content = preg_replace("/[$]_db_config\[\"cache_time\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_db_config[\"cache_time\"] = \"".$cache_time."\";",$content);
  90. file_put_msg("../app/database.config.php",$content);
  91. unset($content);
  92. //更新网站域名
  93. $siteurl = safe_html($siteurl);
  94. $handle = opendir("../data");
  95. $array = array();
  96. while(false !== ($myfile = readdir($handle)))
  97. {
  98. if($myfile != "." && $myfile != ".." && $myfile !=".svn") $array[] = "../data/".$myfile;
  99. }
  100. closedir($handle);
  101. foreach($array AS $key=>$value)
  102. {
  103. if(file_exists($value) && is_file($value))
  104. {
  105. if(substr(basename($value),0,6) == "system")
  106. {
  107. $content = file_get_contents($value);
  108. $content = preg_replace("/[$]_sys\[\"siteurl\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_sys[\"siteurl\"] = \"".$siteurl."\";",$content);
  109. $content = preg_replace("/[$]_sys\[\"shareyeslink\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_sys[\"shareyeslink\"] = \"".$siteurl."\";",$content);
  110. $content = preg_replace("/[$]_sys\[\"wx_link\"\]\s*\=\s*[\"'].*?[\"'];/is", "\$_sys[\"wx_link\"] = \"".$siteurl."\";",$content);
  111. file_put_msg($value,$content);
  112. }
  113. }
  114. }
  115. //导入数据库
  116. $sql = file_get_contents("install.sql");
  117. if($prefix != "yehnet_")
  118. {
  119. $sql = str_replace("yehnet_",$prefix,$sql);
  120. }
  121. format_sql($sql);
  122. //更新管理员信息
  123. $admin_user = safe_html($admin_user);
  124. $admin_pass = safe_html($admin_pass);
  125. $sql = "TRUNCATE TABLE `".$prefix."admin`";
  126. $db->query($sql);
  127. $sql = "INSERT INTO ".$prefix."admin(name,email,pass,status,if_system,popedom) VALUES('".$admin_user."','admin@admin.com','".sys_md5($admin_pass)."','1','1','')";
  128. $db->query($sql);
  129. @touch("lock.php");
  130. $tpl->display("success.html");
  131. }
  132. ?>