complete.tpl
1.18 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
<?php //global $default; ?>
<form>
<p class="title">Database Upgrade Completed</p>
<div id="step_content_complete" class="step">
<!-- Services -->
<br/><br/>
<div>
Your database has been upgraded to <?php echo $sysVersion; ?>
</div>
<br/><br/>
<?php if($migrateCheck) { ?>
<h3>Services</h3>
The KnowledgeTree services need to be started to allow for optimal functioning of the search, indexing and pdf generation.
<?php if(!WINDOWS_OS) { ?>
To start the services, execute the dmsctl.sh shell script in the KnowledgeTree directory from a terminal.
<br/>
<br/>
<?php } else { ?>
To start the services, execute the dmsctl.bat batch file in the KnowledgeTree directory from a command prompt, run as administrator.
<br/>
<br/>
<?php } ?>
<p class="disclaimer">
<?php if(WINDOWS_OS) { ?>
cd <?php echo "\"".SYSTEM_ROOT."\""; ?> <br/>
dmsctl.bat install<br/>
dmsctl.bat start
<?php } else { ?>
cd /usr/share/knowledgetree-ce<br/>
sudo ./dmsctl.sh start
<?php } ?>
</p>
<br/>
<?php } ?>
</div>
<a href="../../login.php" class="back button_next" style="width:50px;" onclick="javascript:{w.clearSessions();}">Finish</a>
</form>