complete.tpl
3.17 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
<h1>Installation Completed</h1>
<h2>KnowledgeTree post-configuration checkup</h2>
<p>This allows you to check that your KnowledgeTree configuration is set
up correctly. You can run this at any time after configuration to check
that things are still set up correctly.</p>
<?php
if($errors || $warnings){
echo '<div>'
. '<a href="http://wiki.knowledgetree.com/Web_Based_Installer#Post_Install" target="_blank">'
. 'Click Here for help on overcoming post install issues</a></div><br/>';
}
?>
<div>
<h3><?php echo "<span class='{$paths_check}'> </span>"; ?>Paths and Permissions</h3>
<?php if($silent) { ?>
<div id="options" class="onclick" onclick="javascript:{w.toggleClass('paths_check');}">Show Details</div>
<div class="paths_check" style="display:none">
<?php } ?>
<table>
<tr><?php echo $varDirectory; ?></tr>
<tr><?php echo $documentRoot; ?></tr>
<tr><?php echo $logDirectory; ?></tr>
<tr><?php echo $tmpDirectory; ?></tr>
<tr><?php echo $uploadDirectory; ?></tr>
<tr><?php echo $config; ?></tr>
<tr><?php echo $docLocation; ?></tr>
</table>
<?php if($silent) { ?>
</div>
<?php } ?>
</div>
<div>
<h3><?php echo "<span class='{$database_check}'> </span>"; ?>Database connectivity</h3>
<?php if($silent) { ?>
<div id="options" class="onclick" onclick="javascript:{w.toggleClass('database_check');}">Show Details</div>
<div class="database_check" style="display:none">
<?php } ?>
<table>
<tr><?php echo $dbConnectAdmin; ?></tr>
<tr><?php echo $dbConnectUser; ?></tr>
</table>
<?php if($silent) { ?>
</div>
<?php } ?>
<h3><?php echo "<span class='{$privileges_check}'> </span>"; ?>Privileges</h3>
<?php if($silent) { ?>
<div id="options" class="onclick" onclick="javascript:{w.toggleClass('privileges_check');}">Show Details</div>
<div class="privileges_check" style="display:none">
<?php } ?>
<table>
<tr><?php echo $dbPrivileges; ?></tr>
<tr><?php echo $dbTransaction; ?></tr>
</table>
<?php if($silent) { ?>
</div>
<?php } ?>
</div>
<div>
<h3><?php echo "<span class='{$services_check}'> </span>"; ?>Services</h3>
<?php if($silent) { ?>
<div id="options" class="onclick" onclick="javascript:{w.toggleClass('services_check');}">Show Details</div>
<div class="services_check" style="display:none">
<?php } ?>
<table>
<tr>
<td><?php echo "<span class='{$LuceneStatus}'> </span>"; ?>Lucene Service</td>
</tr>
<tr>
<td><?php echo "<span class='{$SchedulerStatus}'> </span>"; ?>Scheduler Service</td>
</tr>
</table>
<?php if($silent) { ?>
</div>
<?php } ?>
</div>
<form>
<div class="buttons">
<!-- <a href="index.php?step_name=complete&step=previous" class="previous">Previous</a>-->
<a href="">Refresh</a>
<a href="../../">Goto Login</a>
<?php
if (INSTALL_TYPE == 'Zend') {
echo '<a href="http://' . $_SERVER['HTTP_HOST'] . '/ZendServer/Index">Zend Server Configuration</a>';
}
?>
</div>
</form>