你已经安装过该系统,如果想重新安装,请先删除站点install目录下的 install.lock 文件,然后再安装。 '; exit; } @set_time_limit(1000); if (phpversion() <= '5.4.0') set_magic_quotes_runtime(0); if ('5.4.0' > phpversion()){ header("Content-type:text/html;charset=utf-8"); exit('您的php版本过低,不能安装本软件,请升级到5.4.0或更高版本再安装,谢谢!'); } define("TP_SHOP_VERSION", '20170101'); date_default_timezone_set('PRC'); error_reporting(E_ALL & ~E_NOTICE); header('Content-Type: text/html; charset=UTF-8'); define('SITEDIR', _dir_path(substr(dirname(__FILE__), 0, -8))); //define('SITEDIR2', substr(SITEDIR,0,-7)); //echo SITEDIR2; //exit; //数据库 $sqlFile = 'tpshop.sql'; $configFile = 'config.php'; if (!file_exists(SITEDIR . 'install/' . $sqlFile) || !file_exists(SITEDIR . 'install/' . $configFile)) { echo '缺少必要的安装文件!'; exit; } $Title = "TPshop安装向导"; $Powered = "Powered by TPshop"; $steps = array( '1' => '安装许可协议', '2' => '运行环境检测', '3' => '安装参数设置', '4' => '安装详细过程', '5' => '安装完成', ); $step = isset($_GET['step']) ? $_GET['step'] : 1; //地址 $scriptName = !empty($_SERVER["REQUEST_URI"]) ? $scriptName = $_SERVER["REQUEST_URI"] : $scriptName = $_SERVER["PHP_SELF"]; $rootpath = @preg_replace("/\/(I|i)nstall\/index\.php(.*)$/", "", $scriptName); $domain = empty($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME']; if ((int) $_SERVER['SERVER_PORT'] != 80) { $domain .= ":" . $_SERVER['SERVER_PORT']; } $domain = $domain . $rootpath; switch ($step) { case '1': include_once ("./templates/step1.php"); exit(); case '2': if (phpversion() < 5) { die('本系统需要PHP5+MYSQL >=5.0环境,当前PHP版本为:' . phpversion()); } $phpv = @ phpversion(); $os = PHP_OS; //$os = php_uname(); $tmp = function_exists('gd_info') ? gd_info() : array(); $server = $_SERVER["SERVER_SOFTWARE"]; $host = (empty($_SERVER["SERVER_ADDR"]) ? $_SERVER["SERVER_HOST"] : $_SERVER["SERVER_ADDR"]); $name = $_SERVER["SERVER_NAME"]; $max_execution_time = ini_get('max_execution_time'); $allow_reference = (ini_get('allow_call_time_pass_reference') ? '[√]On' : '[×]Off'); $allow_url_fopen = (ini_get('allow_url_fopen') ? '[√]On' : '[×]Off'); $safe_mode = (ini_get('safe_mode') ? '[×]On' : '[√]Off'); $err = 0; if (empty($tmp['GD Version'])) { $gd = '[×]Off'; $err++; } else { $gd = '[√]On ' . $tmp['GD Version']; } if (function_exists('mysqli_connect')) { $mysql = ' 已安装'; } else { $mysql = ' 请安装mysqli扩展'; $err++; } if (ini_get('file_uploads')) { $uploadSize = ' ' . ini_get('upload_max_filesize'); } else { $uploadSize = '禁止上传'; } if (function_exists('session_start')) { $session = ' 支持'; } else { $session = ' 不支持'; $err++; } if(function_exists('curl_init')){ $curl = '[√]支持 '; }else{ $curl = '[×]不支持'; $err++; } if(function_exists('file_put_contents')){ $file_put_contents = '[√]支持 '; }else{ $file_put_contents = '[×]不支持'; $err++; } $folder = array( 'install', 'public/upload', 'application/admin/conf', 'runtime', 'runtime/cache', 'runtime/temp', 'runtime/log', ); include_once ("./templates/step2.php"); exit(); case '3': $dbName = strtolower(trim($_POST['dbName'])); $_POST['dbport'] = $_POST['dbport'] ? $_POST['dbport'] : '3306'; if ($_GET['testdbpwd']) { $dbHost = $_POST['dbHost']; $conn = @mysqli_connect($dbHost, $_POST['dbUser'], $_POST['dbPwd'],NULL,$_POST['dbport']); if (mysqli_connect_errno($conn)){ die(json_encode(0)); } else { $result = mysqli_query($conn,"SELECT @@global.sql_mode"); $result = $result->fetch_array(); $version = mysqli_get_server_info($conn); if ($version >= 5.7) { if(strstr($result[0],'STRICT_TRANS_TABLES') || strstr($result[0],'STRICT_ALL_TABLES') || strstr($result[0],'TRADITIONAL') || strstr($result[0],'ANSI')) exit(json_encode(-1)); } $result = mysqli_query($conn,"select count(table_name) as c from information_schema.`TABLES` where table_schema='$dbName'"); $result = $result->fetch_array(); if($result['c'] > 0) exit(json_encode(-2)); exit(json_encode(1)); } } include_once ("./templates/step3.php"); exit(); case '4': if (intval($_GET['install'])) { $n = intval($_GET['n']); $arr = array(); $dbHost = trim($_POST['dbhost']); $_POST['dbport'] = $_POST['dbport'] ? $_POST['dbport'] : '3306'; $dbName = strtolower(trim($_POST['dbname'])); $dbUser = trim($_POST['dbuser']); $dbPwd = trim($_POST['dbpw']); $dbPrefix = empty($_POST['dbprefix']) ? 'tp_' : trim($_POST['dbprefix']); $username = trim($_POST['manager']); $password = trim($_POST['manager_pwd']); $email = trim($_POST['manager_email']); /* //网站名称 $site_name = addslashes(trim($_POST['sitename'])); //网站域名 $site_url = trim($_POST['siteurl']); //描述 $seo_description = addslashes(trim($_POST['siteinfo'])); //关键词 $seo_keywords = addslashes(trim($_POST['keywords'])); */ if (!function_exists('mysqli_connect')) { $arr['msg'] = "请安装 mysqli 扩展!"; echo json_encode($arr); exit; } $conn = @mysqli_connect($dbHost, $dbUser, $dbPwd,NULL,$_POST['dbport']); if (mysqli_connect_errno($conn)){ $arr['msg'] = "连接数据库失败!".mysqli_connect_error($conn); echo json_encode($arr); exit; } mysqli_set_charset($conn, "utf8"); //,character_set_client=binary,sql_mode=''; $version = mysqli_get_server_info($conn); if ($version < 5.5) { $arr['msg'] = '数据库版本太低! 必须5.5以上'; echo json_encode($arr); exit; } if (!mysqli_select_db($conn,$dbName)) { //创建数据时同时设置编码 if (!mysqli_query($conn,"CREATE DATABASE IF NOT EXISTS `" . $dbName . "` DEFAULT CHARACTER SET utf8;")) { $arr['msg'] = '数据库 ' . $dbName . ' 不存在,也没权限创建新的数据库!'; echo json_encode($arr); exit; } if ($n==-1) { $arr['n'] = 0; $arr['msg'] = "成功创建数据库:{$dbName}
"; echo json_encode($arr); exit; } mysqli_select_db($conn , $dbName); } //读取数据文件 $sqldata = file_get_contents(SITEDIR . 'install/' . $sqlFile); $sqlFormat = sql_split($sqldata, $dbPrefix); //创建写入sql数据库文件到库中 结束 mysqli_query($conn,"set global wait_timeout=2147480"); mysqli_query($conn,"set global interactive_timeout=2147480"); mysqli_query($conn,"set global max_allowed_packet=104857600"); /** * 执行SQL语句 */ $counts = count($sqlFormat); for ($i = $n; $i < $counts; $i++) { $sql = trim($sqlFormat[$i]); if (strstr($sql, 'CREATE TABLE')) { preg_match('/CREATE TABLE `([^ ]*)`/', $sql, $matches); mysqli_query($conn,"DROP TABLE IF EXISTS `$matches[1]"); $ret = mysqli_query($conn,$sql); if ($ret) { $message = '
  • 创建数据表' . $matches[1] . ',完成!'.date('Y-m-d H:i:s').'
  • '; } else { $message = '
  • 创建数据表' . $matches[1] . ',失败!'.date('Y-m-d H:i:s').'
  • '; } $i++; $arr = array('n' => $i, 'msg' => $message); echo json_encode($arr); exit; } else { if(trim($sql) == '') continue; $ret = mysqli_query($conn,$sql); $message = ''; $arr = array('n' => $i, 'msg' => $message); //echo json_encode($arr); exit; } } // 清空测试数据 if($_POST['demo'] != 'demo') { $result = mysqli_query($conn,"show tables"); $tables = array(); //$tables=$result->fetch_all(MYSQLI_NUM);//参数MYSQL_ASSOC、MYSQLI_NUM、MYSQLI_BOTH规定产生数组类型 while($row = mysqli_fetch_array($result)) { $tables[] = $row; } $bl_table = array('tp_admin','tp_config','tp_region','tp_system_module','tp_admin_role','tp_system_menu','tp_article_cat','tp_wx_user','tp_system_article','tp_wx_tpl_msg','tp_menu_cfg'); foreach($bl_table as $k => $v) { $bl_table[$k] = str_replace('tp_',$dbPrefix,$v); } foreach($tables as $key => $val) { if(!in_array($val[0], $bl_table)) { mysqli_query($conn,"truncate table ".$val[0]); } } delFile('../public/upload/goods'); // 清空测试图片 } if ($i == 999999) exit; //读取配置文件,并替换真实配置数据1 $strConfig = file_get_contents(SITEDIR . 'install/' . $configFile); $strConfig = str_replace('#DB_HOST#', $dbHost, $strConfig); $strConfig = str_replace('#DB_NAME#', $dbName, $strConfig); $strConfig = str_replace('#DB_USER#', $dbUser, $strConfig); $strConfig = str_replace('#DB_PWD#', $dbPwd, $strConfig); $strConfig = str_replace('#DB_PORT#', $_POST['dbport'], $strConfig); $strConfig = str_replace('#DB_PREFIX#', $dbPrefix, $strConfig); $strConfig = str_replace('#DB_CHARSET#', 'utf8', $strConfig); $strConfig = str_replace('#DB_DEBUG#', false, $strConfig); @chmod(SITEDIR . '/application/database.php',0777); //数据库配置文件的地址 @file_put_contents(SITEDIR . '/application/database.php', $strConfig); //数据库配置文件的地址 //读取配置文件,并替换缓存前缀 $strConfig = file_get_contents(SITEDIR . '/application/config.php'); $uniqid_str = uniqid(); $uniqid_str = md5($uniqid_str); $strConfig = str_replace('tpshop_cache_prefix', $uniqid_str, $strConfig); @chmod(SITEDIR . '/application/config.php',0777); //配置文件的地址 @file_put_contents(SITEDIR . '/application/config.php', $strConfig); //配置文件的地址 //更新网站配置信息2 /* $site_name = trim($_POST['sitename']); $site_url = trim($_POST['siteurl']); $site_keywords = trim($_POST['sitekeywords']); $site_desc = trim($_POST['siteinfo']); $sql = "INSERT INTO `{$dbPrefix}config` (name,value,inc_type) VALUES ('site_name','$site_name','shop_info'),('site_url','$site_url','shop_info'),('site_keywords','$site_keywords','shop_info'),('site_desc','$site_desc','shop_info')"; mysql_query($sql); */ //插入管理员表字段tp_admin表 $time = time(); $ip = get_client_ip(); $ip = empty($ip) ? "0.0.0.0" : $ip; $password = md5('TPSHOP'.trim($_POST['manager_pwd'])); mysqli_query($conn,"delete from `{$dbPrefix}admin` where user_name = 'admin'"); //mysql_query("INSERT INTO `{$dbPrefix}admin` (admin_id,user_name,email,password,add_time,last_ip,role_id) VALUES ('1','$username','$email','$password','$time','$ip','1')"); mysqli_query($conn," insert into `{$dbPrefix}admin` (`admin_id`,`user_name`,`email`,`password`,`ec_salt`,`add_time`,`last_login`,`last_ip`,`nav_list`,`lang_type`,`agency_id`,`suppliers_id`,`todolist`,`role_id`) values ('1','$username','$email','$password',NULL,'$time',0,'$ip','','','0','0',NULL,'1')"); $message = '成功添加管理员
    成功写入配置文件
    安装完成.'; $arr = array('n' => 999999, 'msg' => $message); echo json_encode($arr); exit; } include_once ("./templates/step4.php"); exit(); case '5': $ip = get_client_ip(); $host = $_SERVER['HTTP_HOST']; $curent_version = file_get_contents(SITEDIR .'/application/admin/conf/version.php'); $create_date = date("Ymdhis"); $time = time(); $mt_rand_str = $create_date.sp_random_string(6); $str_constant = "