blob: e846cce7e4a73c4e348ed594c65949a6894f056a (
plain)
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
|
<h1>Package Installation</h1>
{form legend="Installed Packages"}
<input type="hidden" name="step" value="{$next_step}" />
{if $failedcommands or $error}
{if $error}
<div class="row">
<ul class="result">
<li class="error">
There was a problem during the installation
</li>
<li>
It seems the administrators information got lost during the process. Please go back to the admin setup page and enter the information again and follow through with the installation.<br />
Please <strong>don't use the back button</strong>.
</li>
</ul>
</div>
{/if}
{if $failedcommands}
<div class="row">
<h2 class="warning">
The following database operations failed
</h2>
{section loop=$failedcommands name=idx}<p class="error">{$errors[idx]|escape}:<br/> {$failedcommands[idx]|escape}</p>{/section}
<h3>Some errors occured. Your site may not be ready to run. You can revisit the previous page to rerun the installation.</h3>
</div>
{/if}
{else}
<div class="row">
<ul class="result">
<li class="success">
All Database operations completed succesfully
</li>
</ul>
</div>
{if !$first_install}
<div class="row">
<ul class="result">
<li class="warning">
You have just successfully installed new packages.
During installation, new permissions were probably
added to the database, but not assigned to any groups.
You can use the <strong>{smartlink ititle="permission
maintenance" ipackage=users ifile=admin/permissions.php}
</strong> page to assign these permissions quickly and
easily.
</li>
</ul>
</div>
{/if}
{if $packageList.install}
<div class="row">
{formlabel label="Packages that were installed"}
{forminput}
<ul>
{foreach from=$packageList.install item=package}
<li>{$package}</li>
{foreachelse}
<li>No packages were installed<li>
{/foreach}
</ul>
{/forminput}
</div>
{/if}
{if $packageList.uninstall}
<div class="row">
{formlabel label="Packages that were uninstalled"}
{forminput}
<ul>
{foreach from=$packageList.uninstall item=package}
<li>{$package}</li>
{foreachelse}
<li>No packages were uninstalled<li>
{/foreach}
</ul>
{/forminput}
</div>
{/if}
{if $packageList.reinstall}
<div class="row">
{formlabel label="Packages that were reinstalled"}
{forminput}
<ul>
{foreach from=$packageList.reinstall item=package}
<li>{$package}</li>
{foreachelse}
<li>No packages were reinstalled<li>
{/foreach}
</ul>
{/forminput}
</div>
{/if}
{/if}
<div class="row submit">
<input type="submit" value="Continue install process" />
</div>
{/form}
|