installation_confirm.tpl
1.77 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
<form action="index.php?step_name=installation" method="post">
<p class="title">Current Installation</p>
<!--Continue Message-->
<?php
if(!$errors && !$warnings) {
?>
<span class='big_ok'> </span>
Installation has been detected. Please confirm system settings.
<br/><br/>
<?php
}
?>
<!--Warning and Error Messages-->
<?php if($errors) { ?>
<span class='cross'> </span>
<span class='error_message'>Your system is not quite ready to migrate KnowledgeTree. See the list below to determine which areas you need to address.</span>
<br/>
<?php } elseif ($warnings) {
?>
<?php
}?>
<?php
if($errors || $warnings) {
?>
<a href="http://wiki.knowledgetree.com/Web_Based_Migrater#Current_Installation" target="_blank">Click here for help on overcoming installation detection issues</a>
<?php } ?>
<!--Content-->
<div id="step_content" class="step">
<br/>
<br/>
<p class="empty_space">
Please verify your current installation settings.
</p>
<h3>Database Settings</h3>
<table class="conf_paths">
<tr>
<td width="22%"">Database Name: </td>
<td width="50%"><?php echo $dbSettings['dbName']; ?></td>
</tr>
</table>
<h3>System Paths</h3>
<table class="conf_paths">
<?php foreach ($urlPaths as $key => $path) { ?>
<tr>
<td width="22%"><?php echo $path['name']; ?>:</td>
<td width="50%""><?php echo $path['path']; ?></td>
</tr>
<?php
}
?>
</table>
</div>
<input type="submit" name="Edit" value="Edit" class="button_previous"/>
<input type="submit" name="Confirm" value="Confirm" class="button_next"/>
</form>
<?php if (AJAX) { ?> <script type="text/javascript" src="resources/form.js"></script> <?php } ?>