diff --git a/app/install/controller/Index.php b/app/install/controller/Index.php index 5e2295f..f6aa85b 100644 --- a/app/install/controller/Index.php +++ b/app/install/controller/Index.php @@ -78,6 +78,7 @@ class Index // 验证失败 输出错误信息 return to_assign(1, $e->getError()); } + $dbName = $data['DB_NAME']; // 连接数据库 $link = @new mysqli("{$data['DB_HOST']}:{$data['DB_PORT']}", $data['DB_USER'], $data['DB_PWD']); // 获取错误信息 @@ -88,15 +89,17 @@ class Index return to_assign(1, '数据库链接失败:' . $error);die; } // 设置字符集 - $link->query("SET NAMES 'utf8'"); + $link->query("SET NAMES 'utf8mb4'"); if ($link->server_info < 5.0) { return to_assign(1, '请将您的mysql升级到5.0以上');die; } // 创建数据库并选中 - if (!$link->select_db($data['DB_NAME'])) { - return to_assign(1, '未找到数据库' . $data['DB_NAME'] . ',请先自行创建数据库');die; + if (!$link->select_db($dbName)) { + //创建数据库 + $sql = "CREATE DATABASE IF NOT EXISTS `{$dbName}` DEFAULT CHARACTER SET utf8mb4"; + $link->query($sql); } - $link->select_db($data['DB_NAME']); + $link->select_db($dbName); // 导入sql数据并创建表 $fqcms_sql = file_get_contents(CMS_ROOT . '/app/install/data/gougucms.sql'); $sql_array = preg_split("/;[\r\n]+/", str_replace("cms_", $data['DB_PREFIX'], $fqcms_sql)); @@ -105,10 +108,13 @@ class Index $link->query($v); } } - + $isTable = $link->query('SHOW TABLES LIKE "'.$data['DB_PREFIX'] . 'admin"'); + if(!$isTable){ + return to_assign(1, '创建数据库表失败,请检查是否有创建权限!'); + } //插入管理员信息 - $username = get_params('username'); - $password = get_params('password'); + $username = $data['username']; + $password = $data['password']; $nickname = '超级管理员'; $thumb = '/static/admin/images/icon.png'; $salt = set_salt(20); @@ -121,7 +127,7 @@ class Index . "VALUES " . "('$username','$password','$nickname','$thumb','$salt','$create_time','$update_time')"; if (!$link->query($create_admin_sql)) { - return to_assign(1, '创建管理员信息失败'); + return to_assign(1, '创建管理员信息失败,请重试安装'); } $link->close(); $db_str = " @@ -34,7 +31,7 @@
勾股CMS是一套基于ThinkPHP{$TP_VERSION} + Layui{:LAYUI_VERSION} + MySql打造的轻量级、高性能快速建站的内容管理系统。后台管理模块,一目了然,操作简单,通用型后台权限管理框架,紧随潮流、开箱即用,让WEB开发更简单!
+
勾股CMS是一套基于ThinkPHP{$TP_VERSION} + Layui{:LAYUI_VERSION} + MySql打造的轻量级、高性能快速建站的内容管理系统,通用型后台权限管理框架,开箱即用,让WEB开发更简单!
开源协议:
本系统遵循Apache Lisense 2.0开源协议发布,并提供免费使用。
Apache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,鼓励代码共享和尊重原作者的著作权,允许代码修改,再作为开源或商业软件发布。需要满足的条件:
diff --git a/app/install/view/index/step2.html b/app/install/view/index/step2.html
index 8f4c6c4..b58e274 100644
--- a/app/install/view/index/step2.html
+++ b/app/install/view/index/step2.html
@@ -12,13 +12,10 @@
body {
width: 100%;
height: 100%;
- background: url("/themes/admin_themes/lib/cms/images/bg.jpg");
background-size: cover;
background: url("/static/admin/images/bg_pattern.png"), #7b4397;
background: url("/static/admin/images/bg_pattern.png"), -webkit-linear-gradient(to left, #34a853, #4285f4);
- /* Chrome 10-25, Safari 5.1-6 */
background: url("/static/admin/images/bg_pattern.png"), linear-gradient(to left, #34a853, #4285f4);
- /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
diff --git a/app/install/view/index/step3.html b/app/install/view/index/step3.html
index f425f66..74698a0 100644
--- a/app/install/view/index/step3.html
+++ b/app/install/view/index/step3.html
@@ -12,19 +12,16 @@
body {
width: 100%;
height: 100%;
- background: url("{__IMG__}/bg.jpg");
background-size: cover;
- background: url("{__IMG__}/bg_pattern.png"), #7b4397;
- background: url("{__IMG__}/bg_pattern.png"), -webkit-linear-gradient(to left, #34a853, #4285f4);
- /* Chrome 10-25, Safari 5.1-6 */
- background: url("{__IMG__}/bg_pattern.png"), linear-gradient(to left, #34a853, #4285f4);
- /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
+ background: url("/static/admin/images/bg_pattern.png"), #7b4397;
+ background: url("/static/admin/images/bg_pattern.png"), -webkit-linear-gradient(to left, #34a853, #4285f4);
+ background: url("/static/admin/images/bg_pattern.png"), linear-gradient(to left, #34a853, #4285f4);
}