forked from emlog/emlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.php
executable file
·671 lines (634 loc) · 27.6 KB
/
install.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
<?php
/**
* install
* @package EMLOG
* @link https://www.emlog.net
*/
const EMLOG_ROOT = __DIR__;
require_once EMLOG_ROOT . '/include/lib/common.php';
header('Content-Type: text/html; charset=UTF-8');
spl_autoload_register("emAutoload");
if (PHP_VERSION < '5.6') {
emMsg('PHP版本太低,请使用PHP5.6及以上版本(推荐7.4)');
}
$act = isset($_GET['action']) ? $_GET['action'] : '';
$bt_db_host = 'localhost';
$bt_db_username = 'BT_DB_USERNAME';
$bt_db_password = 'BT_DB_PASSWORD';
$bt_db_name = 'BT_DB_NAME';
$env_emlog_env = getenv('EMLOG_ENV');
$env_db_host = getenv('EMLOG_DB_HOST');
$env_db_name = getenv('EMLOG_DB_NAME');
$env_db_user = getenv('EMLOG_DB_USER');
$env_db_password = getenv('EMLOG_DB_PASSWORD');
if (!$act) {
?>
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="applicable-device" content="pc,mobile">
<title>emlog</title>
<style>
body {
background-color: #F7F7F7;
font-family: Arial, sans-serif;
font-size: 12px;
line-height: 150%;
}
hr {
margin: 1rem 0;
color: inherit;
border: 0;
border-top: 1px solid;
opacity: .25;
}
.mb10 {
margin-bottom: 10px;
}
.mb20 {
margin-bottom: 20px;
}
.main {
background-color: #FFFFFF;
font-size: 12px;
color: #666666;
width: 750px;
margin: 30px auto;
padding: 50px;
list-style: none;
border: #DFDFDF 1px solid;
border-radius: 4px;
}
.logo {
background: url(admin/views/images/logo.png) no-repeat center;
padding: 50px 0 50px 0;
margin: 0 0;
}
.title {
text-align: center;
font-size: 14px;
}
.input-group {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: stretch;
width: 100%;
margin-top: 30px;
}
.input-group-text {
display: flex;
align-items: center;
padding: 0.375rem 0.75rem;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
color: #5e5e5e;
text-align: center;
white-space: nowrap;
background-color: #fff;
border: 1px solid #dee2e6;
border-radius: 0.375rem 0 0 0.375rem;
width: 80px;
}
.form-control {
display: block;
padding: 0.375rem 0.75rem;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
color: #5e5e5e;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #dee2e6;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
position: relative;
flex: 1 1 auto;
width: 1%;
min-width: 0;
border-radius: 0 0.375rem 0.375rem 0;
margin-left: calc(1px * -1);
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-label {
margin-bottom: 0.5rem;
}
.btn {
cursor: pointer;
color: #008cff;
letter-spacing: .5px;
padding-right: 3rem !important;
padding-left: 3rem !important;
display: inline-block;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
text-align: center;
text-decoration: none;
vertical-align: middle;
user-select: none;
border: 1px solid #008cff;
border-radius: 5px;
background-color: transparent;
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn:hover {
color: #fff;
background-color: #008cff;
border-color: #008cff;
}
.care {
color: rgb(128, 128, 128);
}
.install-title {
margin-top: 50px;
margin-bottom: 0;
font-size: 18px;
font-weight: normal;
}
.next_btn {
margin: 50px 0 10px 0;
text-align: center;
}
.footer {
margin: 20px 0 30px 0;
text-align: center;
}
@media (max-width: 768px) {
.main {
width: unset;
}
}
</style>
</head>
<body>
<form name="form1" method="post" action="install.php?action=install">
<div class="main">
<p class="logo"></p>
<p class="title mb20">emlog <?= Option::EMLOG_VERSION ?></p>
<?php if ($env_db_user): ?>
<div class="b">
<input name="hostname" type="hidden" value="<?= $env_db_host ?>">
<input name="dbuser" type="hidden" value="<?= $env_db_user ?>">
<input name="dbpasswd" type="hidden" value="<?= $env_db_password ?>">
<input name="dbname" type="hidden" value="<?= $env_db_name ?>">
<input name="dbprefix" type="hidden" value="emlog_">
</div>
<?php elseif (strpos($bt_db_username, 'BT_DB_') === false): ?>
<div class="b">
<input name="hostname" type="hidden" value="<?= $bt_db_host ?>">
<input name="dbuser" type="hidden" value="<?= $bt_db_username ?>">
<input name="dbpasswd" type="hidden" value="<?= $bt_db_password ?>">
<input name="dbname" type="hidden" value="<?= $bt_db_name ?>">
<input name="dbprefix" type="hidden" value="emlog_">
</div>
<?php else: ?>
<div class="b mb20">
<p class="install-title">MySQL数据库设置</p>
<div class="input-group mb10">
<label class="input-group-text">数据库地址</label>
<input name="hostname" type="text" class="form-control" value="localhost">
</div>
<div class="mb10">
<label class="form-label care">通常为 localhost 或者指定端口 localhost:3306</label>
</div>
<div class="input-group mb10">
<span class="input-group-text">数据库用户名</span>
<input name="dbuser" type="text" class="form-control" value="">
</div>
<div class="input-group mb10">
<span class="input-group-text">数据库密码</span>
<input name="dbpasswd" type="password" class="form-control" value="">
</div>
<div class="input-group mb10">
<span class="input-group-text">数据库名</span>
<input name="dbname" type="text" class="form-control" value="">
</div>
<div class="mb10">
<label class="form-label care">程序不会自动创建数据库,请提前创建一个空数据库或使用已有数据库</label>
</div>
<div class="input-group mb10">
<span class="input-group-text">数据库表前缀</span>
<input name="dbprefix" type="text" class="form-control" value="emlog_">
</div>
<div class="mb10">
<label class="form-label care">通常默认即可,不必修改。由英文字母、数字、下划线组成,且必须以下划线结束</label>
</div>
</div>
<?php endif; ?>
<div class="c">
<p class="install-title">管理员设置</p>
<div class="input-group mb10">
<span class="input-group-text">登录名</span>
<input name="username" type="text" class="form-control" required>
</div>
<div class="input-group mb10">
<span class="input-group-text">密码</span>
<input name="password" type="password" class="form-control" placeholder="不小于6位" required>
</div>
<div class="input-group mb10">
<span class="input-group-text">重复密码</span>
<input name="repassword" type="password" class="form-control" required>
</div>
<div class="input-group mb10">
<span class="input-group-text">邮箱</span>
<input name="email" type="text" class="form-control">
</div>
</div>
<div class="next_btn">
<button type="submit" class="btn">开始安装</button>
</div>
</div>
</form>
<div class="footer">Powered by <a href="http://www.emlog.net">emlog</a></div>
</body>
</html>
<?php
}
if ($act == 'install' || $act == 'reinstall') {
$db_host = isset($_POST['hostname']) ? addslashes(trim($_POST['hostname'])) : '';
$db_user = isset($_POST['dbuser']) ? addslashes(trim($_POST['dbuser'])) : '';
$db_pw = isset($_POST['dbpasswd']) ? addslashes(trim($_POST['dbpasswd'])) : '';
$db_name = isset($_POST['dbname']) ? addslashes(trim($_POST['dbname'])) : '';
$db_prefix = isset($_POST['dbprefix']) ? addslashes(trim($_POST['dbprefix'])) : '';
$username = isset($_POST['username']) ? addslashes(trim($_POST['username'])) : '';
$password = isset($_POST['password']) ? addslashes(trim($_POST['password'])) : '';
$repassword = isset($_POST['repassword']) ? addslashes(trim($_POST['repassword'])) : '';
$email = isset($_POST['email']) ? addslashes(trim($_POST['email'])) : '';
if ($db_prefix === '') {
emMsg('数据库表前缀不能为空!');
} elseif (!preg_match("/^[\w_]+_$/", $db_prefix)) {
emMsg('数据库表前缀格式错误!');
} elseif (!$username || !$password) {
emMsg('登录名和密码不能为空!');
} elseif (strlen($password) < 6) {
emMsg('登录密码不得小于6位');
} elseif ($password != $repassword) {
emMsg('两次输入的密码不一致');
}
define('DB_HOST', $db_host);
define('DB_USER', $db_user);
define('DB_PASSWD', $db_pw);
define('DB_NAME', $db_name);
define('DB_PREFIX', $db_prefix);
$DB = Database::getInstance();
$CACHE = Cache::getInstance();
if ($act != 'reinstall' && $DB->num_rows($DB->query("SHOW TABLES LIKE '{$db_prefix}blog'")) == 1) {
echo <<<EOT
<html>
<head>
<meta charset="utf-8">
<title>emlog system message</title>
<style>
body {background-color:#F7F7F7;font-family: Arial;font-size: 12px;line-height:150%;}
.main {background-color:#FFFFFF;font-size: 12px;color: #666666;width:750px;margin:10px auto;padding:10px;list-style:none;border:#DFDFDF 1px solid;}
.main p {line-height: 18px;margin: 5px 20px;}
</style>
</head><body>
<form name="form1" method="post" action="install.php?action=reinstall">
<div class="main">
<input name="hostname" type="hidden" class="input" value="$db_host">
<input name="dbuser" type="hidden" class="input" value="$db_user">
<input name="dbpasswd" type="hidden" class="input" value="$db_pw">
<input name="dbname" type="hidden" class="input" value="$db_name">
<input name="dbprefix" type="hidden" class="input" value="$db_prefix">
<input name="username" type="hidden" class="input" value="$username">
<input name="password" type="hidden" class="input" value="$password">
<input name="repassword" type="hidden" class="input" value="$repassword">
<input name="email" type="hidden" class="input" value="$email">
<p>
你的emlog看起来已经安装过了。继续安装将会覆盖原有数据,确定要继续吗?
<input type="submit" value="继续»">
</p>
<p><a href="javascript:history.back(-1);">«点击返回</a></p>
</div>
</form>
</body>
</html>
EOT;
exit;
}
if (!is_writable('config.php')) {
emMsg('配置文件(config.php)不可写,请调整文件读写权限。');
}
if (!is_writable(EMLOG_ROOT . '/content/cache')) {
emMsg('缓存目录(content/cache)不可写。请检查目录读写权限。');
}
$config = "<?php\n"
. "//MySQL database host\n"
. "const DB_HOST = '$db_host';"
. "\n//Database username\n"
. "const DB_USER = '$db_user';"
. "\n//Database user password\n"
. "const DB_PASSWD = '$db_pw';"
. "\n//Database name\n"
. "const DB_NAME = '$db_name';"
. "\n//Database Table Prefix\n"
. "const DB_PREFIX = '$db_prefix';"
. "\n//Auth key\n"
. "const AUTH_KEY = '" . getRandStr(32) . md5(getUA()) . "';"
. "\n//Cookie name\n"
. "const AUTH_COOKIE_NAME = 'EM_AUTHCOOKIE_" . getRandStr(32, false) . "';";
if (!file_put_contents('config.php', $config)) {
emMsg('配置文件(config.php)不可写,请调整文件读写权限。');
}
$PHPASS = new PasswordHash(8, true);
$password = $PHPASS->HashPassword($password);
$table_charset_sql = 'DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;';
$DB->query("ALTER DATABASE `{$db_name}` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;", true);
$widget_title = serialize(Option::getWidgetTitle());
$def_widgets = serialize(Option::getDefWidget());
$def_plugin = serialize(Option::getDefPlugin());
$apikey = md5(getRandStr(32));
define('BLOG_URL', realUrl());
$sql = "
DROP TABLE IF EXISTS {$db_prefix}blog;
CREATE TABLE {$db_prefix}blog (
gid int(11) unsigned NOT NULL auto_increment COMMENT '文章表',
title varchar(255) NOT NULL default '' COMMENT '文章标题',
date bigint(20) NOT NULL COMMENT '发布时间',
content longtext NOT NULL COMMENT '文章内容',
excerpt longtext NOT NULL COMMENT '文章摘要',
cover varchar(255) NOT NULL DEFAULT '' COMMENT '封面图',
alias varchar(255) NOT NULL DEFAULT '' COMMENT '文章别名',
author int(11) NOT NULL default '1' COMMENT '作者UID',
sortid int(11) NOT NULL default '-1' COMMENT '分类ID',
type varchar(20) NOT NULL default 'blog' COMMENT '文章OR页面',
views int(11) unsigned NOT NULL default '0' COMMENT '阅读量',
comnum int(11) unsigned NOT NULL default '0' COMMENT '评论数量',
attnum int(11) unsigned NOT NULL default '0' COMMENT '附件数量(已废弃)',
top enum('n','y') NOT NULL default 'n' COMMENT '置顶',
sortop enum('n','y') NOT NULL default 'n' COMMENT '分类置顶',
hide enum('n','y') NOT NULL default 'n' COMMENT '草稿y',
checked enum('n','y') NOT NULL default 'y' COMMENT '文章是否审核',
allow_remark enum('n','y') NOT NULL default 'y' COMMENT '允许评论y',
password varchar(255) NOT NULL default '' COMMENT '访问密码',
template varchar(255) NOT NULL default '' COMMENT '模板',
tags text COMMENT '标签',
link varchar(255) NOT NULL DEFAULT '' COMMENT '文章跳转链接',
feedback varchar(2048) NOT NULL DEFAULT '' COMMENT 'audit feedback',
PRIMARY KEY (gid),
KEY author (author),
KEY views (views),
KEY comnum (comnum),
KEY sortid (sortid),
KEY top (top,date),
KEY date (date)
)" . $table_charset_sql . "
INSERT INTO {$db_prefix}blog (gid,title,date,content,excerpt,author,views,comnum,attnum,top,sortop,hide,allow_remark,password) VALUES (1, '欢迎使用emlog', '" . time() . "', '这是系统生成的演示文章。编辑或者删除它,然后开始您的创作吧!', '', 1, 0, 1, 0, 'n', 'n', 'n', 'y', '');
DROP TABLE IF EXISTS {$db_prefix}attachment;
CREATE TABLE {$db_prefix}attachment (
aid int(11) unsigned NOT NULL auto_increment COMMENT '资源文件表',
alias varchar(64) NOT NULL default '' COMMENT '资源别名',
author int(11) unsigned NOT NULL default '1' COMMENT '作者UID',
sortid int(11) NOT NULL default '0' COMMENT '分类ID',
blogid int(11) unsigned NOT NULL default '0' COMMENT '文章ID(已废弃)',
filename varchar(255) NOT NULL default '' COMMENT '文件名',
filesize int(11) NOT NULL default '0' COMMENT '文件大小',
filepath varchar(255) NOT NULL default '' COMMENT '文件路径',
addtime bigint(20) NOT NULL default '0' COMMENT '创建时间',
width int(11) NOT NULL default '0' COMMENT '图片宽度',
height int(11) NOT NULL default '0' COMMENT '图片高度',
mimetype varchar(40) NOT NULL default '' COMMENT '文件mime类型',
thumfor int(11) NOT NULL default 0 COMMENT '缩略图的原资源ID(已废弃)',
download_count bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT '下载次数',
PRIMARY KEY (aid),
KEY thum_uid (thumfor,author),
KEY addtime (addtime)
)" . $table_charset_sql . "
DROP TABLE IF EXISTS {$db_prefix}media_sort;
CREATE TABLE {$db_prefix}media_sort (
id int(11) unsigned NOT NULL auto_increment COMMENT '资源分类表',
sortname varchar(255) NOT NULL default '' COMMENT '分类名',
PRIMARY KEY (id)
)" . $table_charset_sql . "
DROP TABLE IF EXISTS {$db_prefix}comment;
CREATE TABLE {$db_prefix}comment (
cid int(11) unsigned NOT NULL auto_increment COMMENT '评论表',
gid int(11) unsigned NOT NULL default '0' COMMENT '文章ID',
pid int(11) unsigned NOT NULL default '0' COMMENT '父级评论ID',
top enum('n','y') NOT NULL default 'n' COMMENT '置顶',
poster varchar(20) NOT NULL default '' COMMENT '发布人昵称',
uid int(11) NOT NULL default '0' COMMENT '发布人UID',
comment text NOT NULL COMMENT '评论内容',
mail varchar(60) NOT NULL default '' COMMENT 'email',
url varchar(75) NOT NULL default '' COMMENT 'homepage',
ip varchar(128) NOT NULL default '' COMMENT 'ip address',
agent varchar(512) NOT NULL default '' COMMENT 'user agent',
hide enum('n','y') NOT NULL default 'n' COMMENT '是否审核',
date bigint(20) NOT NULL COMMENT '创建时间',
PRIMARY KEY (cid),
KEY gid (gid),
KEY date (date),
KEY hide (hide)
)" . $table_charset_sql . "
INSERT INTO {$db_prefix}comment (gid, date, poster, comment) VALUES (1, '" . time() . "', 'emlog', '这是系统生成的演示评论');
DROP TABLE IF EXISTS {$db_prefix}options;
CREATE TABLE {$db_prefix}options (
option_id INT( 11 ) UNSIGNED NOT NULL auto_increment COMMENT '站点配置信息表',
option_name VARCHAR( 75 ) NOT NULL COMMENT '配置项',
option_value LONGTEXT NOT NULL COMMENT '配置项值',
PRIMARY KEY (option_id),
UNIQUE KEY `option_name_uindex` (`option_name`)
)" . $table_charset_sql . "
INSERT INTO {$db_prefix}options (option_name, option_value) VALUES
('blogname','EMLOG'),
('bloginfo','使用emlog搭建的站点'),
('site_title',''),
('site_description',''),
('site_key','emlog'),
('log_title_style','0'),
('blogurl','" . BLOG_URL . "'),
('icp',''),
('footer_info','powered by <a href=\"https://www.emlog.net\">emlog</a>'),
('admin_perpage_num','15'),
('rss_output_num','10'),
('rss_output_fulltext','y'),
('index_lognum','10'),
('index_comnum','10'),
('index_newlognum','5'),
('index_hotlognum','5'),
('comment_subnum','20'),
('nonce_templet','default'),
('admin_style','default'),
('tpl_sidenum','1'),
('comment_code','n'),
('comment_needchinese','y'),
('comment_interval',60),
('isgravatar','y'),
('isthumbnail','n'),
('att_maxsize','2048'),
('att_type','jpg,jpeg,png,gif,zip,rar'),
('att_imgmaxw','600'),
('att_imgmaxh','370'),
('comment_paging','y'),
('comment_pnum','10'),
('comment_order','newer'),
('iscomment','y'),
('login_comment','n'),
('ischkcomment','y'),
('isurlrewrite','0'),
('isalias','n'),
('isalias_html','n'),
('timezone','Asia/Shanghai'),
('active_plugins','$def_plugin'),
('widget_title','$widget_title'),
('custom_widget','a:0:{}'),
('widgets1','$def_widgets'),
('detect_url','y'),
('emkey',''),
('login_code','n'),
('email_code','n'),
('is_signup','y'),
('ischkarticle','y'),
('article_uneditable','n'),
('forbid_user_upload','n'),
('posts_per_day',10),
('smtp_mail',''),
('smtp_pw',''),
('smtp_server',''),
('smtp_port',''),
('is_openapi','n'),
('apikey','$apikey'),
('panel_menu_title','');
DROP TABLE IF EXISTS {$db_prefix}link;
CREATE TABLE {$db_prefix}link (
id int(11) unsigned NOT NULL auto_increment COMMENT '链接表',
sitename varchar(255) NOT NULL default '' COMMENT '名称',
siteurl varchar(255) NOT NULL default '' COMMENT '地址',
icon varchar(512) NOT NULL default '' COMMENT '图标URL',
description varchar(512) NOT NULL default '' COMMENT '备注信息',
hide enum('n','y') NOT NULL default 'n' COMMENT '是否隐藏',
taxis int(11) unsigned NOT NULL default '0' COMMENT '排序序号',
PRIMARY KEY (id)
)" . $table_charset_sql . "
INSERT INTO {$db_prefix}link (id, sitename, siteurl, icon, description, taxis) VALUES (1, 'EMLOG', 'https://www.emlog.net', '', 'emlog官方主页', 0);
DROP TABLE IF EXISTS {$db_prefix}navi;
CREATE TABLE {$db_prefix}navi (
id int(11) unsigned NOT NULL auto_increment COMMENT '导航表',
naviname varchar(30) NOT NULL default '' COMMENT '导航名称',
url varchar(512) NOT NULL default '' COMMENT '导航地址',
newtab enum('n','y') NOT NULL default 'n' COMMENT '在新窗口打开',
hide enum('n','y') NOT NULL default 'n' COMMENT '是否隐藏',
taxis int(11) unsigned NOT NULL default '0' COMMENT '排序序号',
pid int(11) unsigned NOT NULL default '0' COMMENT '父级ID',
isdefault enum('n','y') NOT NULL default 'n' COMMENT '是否系统默认导航,如首页',
type tinyint(3) unsigned NOT NULL default '0' COMMENT '导航类型 0自定义 1首页 2微语 3后台管理 4分类 5页面',
type_id int(11) unsigned NOT NULL default '0' COMMENT '导航类型对应ID',
PRIMARY KEY (id)
)" . $table_charset_sql . "
INSERT INTO {$db_prefix}navi (id, naviname, url, taxis, isdefault, type) VALUES (1, '首页', '', 1, 'y', 1);
INSERT INTO {$db_prefix}navi (id, naviname, url, taxis, isdefault, type) VALUES (3, '登录', 'admin', 3, 'y', 3);
DROP TABLE IF EXISTS {$db_prefix}tag;
CREATE TABLE {$db_prefix}tag (
tid int(11) unsigned NOT NULL auto_increment COMMENT '标签表',
tagname varchar(60) NOT NULL default '' COMMENT '标签名',
gid text NOT NULL COMMENT '文章ID',
PRIMARY KEY (tid),
KEY tagname (tagname)
)" . $table_charset_sql . "
DROP TABLE IF EXISTS {$db_prefix}sort;
CREATE TABLE {$db_prefix}sort (
sid int(11) unsigned NOT NULL auto_increment COMMENT '分类表',
sortname varchar(255) NOT NULL default '' COMMENT '分类名',
alias VARCHAR(255) NOT NULL DEFAULT '' COMMENT '别名',
taxis int(11) unsigned NOT NULL default '0' COMMENT '排序序号',
pid int(11) unsigned NOT NULL default '0' COMMENT '父分类ID',
description text NOT NULL COMMENT '备注',
kw VARCHAR(2048) NOT NULL DEFAULT '' COMMENT '关键词',
title VARCHAR(2048) NOT NULL DEFAULT '' COMMENT '页面标题',
template varchar(255) NOT NULL default '' COMMENT '分类模板',
sortimg varchar(512) NOT NULL default '' COMMENT '分类图像',
PRIMARY KEY (sid)
)" . $table_charset_sql . "
DROP TABLE IF EXISTS {$db_prefix}user;
CREATE TABLE {$db_prefix}user (
uid int(11) unsigned NOT NULL auto_increment COMMENT '用户表',
username varchar(32) NOT NULL default '' COMMENT '用户名',
password varchar(64) NOT NULL default '' COMMENT '用户密码',
nickname varchar(20) NOT NULL default '' COMMENT '昵称',
role varchar(60) NOT NULL default '' COMMENT '用户组',
ischeck enum('n','y') NOT NULL default 'n' COMMENT '内容是否需要管理员审核',
photo varchar(255) NOT NULL default '' COMMENT '头像',
email varchar(60) NOT NULL default '' COMMENT '邮箱',
description varchar(255) NOT NULL default '' COMMENT '备注',
ip varchar(128) NOT NULL default '' COMMENT 'ip地址',
state tinyint NOT NULL DEFAULT '0' COMMENT '用户状态 0正常 1禁用',
credits int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户积分',
create_time int(11) NOT NULL COMMENT '创建时间',
update_time int(11) NOT NULL COMMENT '更新时间',
PRIMARY KEY (uid),
KEY username (username),
KEY email (email)
)" . $table_charset_sql . "
INSERT INTO {$db_prefix}user (uid, username, email, password, nickname, role, create_time, update_time) VALUES (1,'$username','$email','$password', 'emer','admin', " . time() . ", " . time() . ");
DROP TABLE IF EXISTS {$db_prefix}twitter;
CREATE TABLE {$db_prefix}twitter (
id INT NOT NULL AUTO_INCREMENT COMMENT '微语笔记表',
content text NOT NULL COMMENT '微语内容',
img varchar(255) DEFAULT NULL COMMENT '图片',
author int(11) NOT NULL default '1' COMMENT '作者UID',
date bigint(20) NOT NULL COMMENT '创建时间',
replynum int(11) unsigned NOT NULL default '0' COMMENT '回复数量',
private enum('n','y') NOT NULL default 'n' COMMENT '是否私密',
PRIMARY KEY (id),
KEY author (author)
)" . $table_charset_sql . "
DROP TABLE IF EXISTS {$db_prefix}storage;
CREATE TABLE {$db_prefix}storage (
`sid` int(8) NOT NULL AUTO_INCREMENT COMMENT '对象存储表',
`plugin` varchar(32) NOT NULL COMMENT '插件名',
`name` varchar(32) NOT NULL COMMENT '对象名',
`type` varchar(8) NOT NULL COMMENT '对象数据类型',
`value` text NOT NULL COMMENT '对象值',
`createdate` int(11) NOT NULL COMMENT '创建时间',
`lastupdate` int(11) NOT NULL COMMENT '更新时间',
PRIMARY KEY (`sid`),
UNIQUE KEY `plugin` (`plugin`,`name`)
)" . $table_charset_sql . "
DROP TABLE IF EXISTS {$db_prefix}tpl_options_data;
CREATE TABLE {$db_prefix}tpl_options_data (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`template` varchar(64) NOT NULL,
`name` varchar(64) NOT NULL,
`depend` varchar(64) NOT NULL DEFAULT '',
`data` longtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `template` (`template`,`name`)
)" . $table_charset_sql . "
DROP TABLE IF EXISTS {$db_prefix}blog_fields;
CREATE TABLE {$db_prefix}blog_fields (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`gid` bigint unsigned NOT NULL DEFAULT '0',
`field_key` varchar(255) DEFAULT NULL DEFAULT '',
`field_value` longtext,
PRIMARY KEY (`id`),
KEY `gid` (`gid`)
)" . $table_charset_sql;
$array_sql = preg_split("/;[\r\n]/", $sql);
foreach ($array_sql as $sql) {
$sql = trim($sql);
if ($sql) {
$DB->query($sql);
}
}
$CACHE->updateCache();
$result = '';
$result .= "
<p style=\"font-size:24px; border-bottom:1px solid #E6E6E6; padding:10px 0px;\">恭喜,安装成功</p>
<p>emlog已经安装好了,现在可以开始你的创作了。</p>
<p><b>用户名</b>:{$username}</p>
<p><b>密 码</b>:刚才你设定的密码</p>";
if ($env_emlog_env === 'develop' || ($env_emlog_env !== 'develop' && !@unlink('./install.php'))) {
$result .= '<p style="color:#ff0000;margin:10px 20px;">警告:请手动删除根目录下安装文件:install.php</p> ';
}
$result .= "<p style=\"text-align:right;\"><a href=\"./\">访问首页</a> | <a href=\"./admin/\">登录后台</a></p>";
emMsg($result, 'none');
}
?>