step5.html
4.8 KB
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
<!doctype html>
<html>
<head>
<include file="public/head"/>
<script src="__STATIC__/js/jquery.js"></script>
</head>
<body>
<div class="wrap">
<include file="public/header"/>
<section class="section">
<div style="padding: 40px 20px;">
<div class="text-center">
<a style="font-size: 18px;">恭喜您,安装完成!</a>
<br>
<br>
<div class="alert alert-danger" style="width: 360px;display: inline-block;">
为了您的站点安全,安装完成后即可将网站app目录下的“install”文件夹删除!
另请对data/conf/database.php文件做好备份,以防丢失!
</div>
</div>
<div class="accordion">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle"
href="https://www.thinkcmf.com/topic/1508.html"
target="_blank">
ThinkCMF5入门必看!
</a>
</div>
<div class="accordion-body collapse in">
<div class="accordion-inner">
<p>
ThinkCMF5完全开发手册:
<a href="http://www.kancloud.cn/thinkcmf/doc" target="_blank">http://www.kancloud.cn/thinkcmf/doc</a>
</p>
<p>
ThinkCMF5核心理念:
<a href="http://www.kancloud.cn/thinkcmf/doc/313906" target="_blank">http://www.kancloud.cn/thinkcmf/doc/313906</a>
</p>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle"
href="http://www.kancloud.cn/thinkcmf/cmf5api" target="_blank">
ThinkCMF API开发及小程序开发入门必看!
</a>
</div>
<div class="accordion-body collapse in">
<div class="accordion-inner">
<p>
CMF5 API开发手册:
<a href="http://www.kancloud.cn/thinkcmf/cmf5api" target="_blank">http://www.kancloud.cn/thinkcmf/cmf5api</a>
</p>
<p>
小程序开发:
<a href="https://www.kancloud.cn/thinkcmf/cmf5api/451391" target="_blank">https://www.kancloud.cn/thinkcmf/cmf5api/451391</a>
</p>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle"
href="https://www.thinkcmf.com/college.html" target="_blank">
ThinkCMF学院视频教程
</a>
</div>
<div class="accordion-body collapse in">
<div class="accordion-inner">
<p>
ThinkCMF模板开发视频:
<a href="https://chuanke.baidu.com/v4472461-241676-1805249.html"
target="_blank">https://chuanke.baidu.com/v4472461-241676-1805249.html</a>
</p>
<p>
ThinkCMF5快速入门:
<a href="https://www.thinkcmf.com/topic/1405.html"
target="_blank">https://www.thinkcmf.com/topic/1405.html</a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center">
<a class="btn btn-success" href="{:cmf_get_root()}/">进入前台</a>
<a class="btn btn-success" href="{:cmf_get_root()}/admin">进入后台</a>
</div>
</div>
</section>
</div>
<include file="public/footer"/>
<script>
$(function () {
return;
$.ajax({
type: "POST",
url: "http://www.thinkcmf.com/service/installinfo.php",
data: {
host: "{$host|default=''}",
ip: "{$ip|default=''}"
},
dataType: 'json',
success: function () {
}
});
});
</script>
</body>
</html>