[PATCH] bug_7420: Added overduefinescap to issuingrules
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / installer / step2.tt
1 [% INCLUDE 'doc-head-open.inc' %]<title>Koha &rsaquo; Web installer &rsaquo; Step 2</title>
2 [% INCLUDE 'installer-doc-head-close.inc' %]
3 <div>
4 <h1 id="logo"><img alt="Koha" src="/intranet-tmpl/prog/img/koha.org-logo.gif" /> Web installer &rsaquo; Step 2</h1>
5 <h2 align="center">Database settings:</h2>
6 <ul>
7 <li><em>database type : </em>[% dbms %]</li>
8 <li><em>database name : </em>[% dbname %]</li>
9 <li><em>database host : </em>[% hostname %]</li>
10 <li><em>database port : </em>[% port %] (probably OK if blank)</li>
11 <li><em>database user : </em>[% user %]</li>
12 </ul>
13 <div>
14 [% IF ( dbconnection ) %]
15 <form name="checkdbparameters" type="post" action="install.pl">
16   [% IF ( checkdatabaseaccess ) %]
17   <p>Connection established.</p>
18      [% IF ( checkdatabasecreated ) %]
19   <p>Database <code>[% dbname %]</code> exists.</p>
20         [% IF ( checkgrantaccess ) %]
21   <p>User <code>[% user %]</code> has all required privileges on database <code>[% dbname %]</code>.</p>
22         [% ELSE %]
23   <p class="error">user <code>[% user %]</code> doesn't have enough privilege on database <code>[% dbname %]</code> </p>
24   <p class="tip"> Ask for or make a change in the user's privileges. Need help? See [% IF ( mysql ) %]<a href=http://dev.mysql.com/doc/refman/4.1/en/grant.html>[% ELSE %]http://www.postgresql.org/docs/8.2/interactive/sql-createrole.html[% END %]this page</a>. User <code>[% user %]</code> must have USAGE, INSERT, UPDATE, DELETE, DROP and CREATE privileges on <code>[% dbname %]</code></p>
25         [% END %]
26       [% ELSE %]
27   <p class="error">No database named <code>[% dbname %]</code> detected.</p>
28   <p class="tip">Please create the database before continuing.</p>
29       [% END %]
30    [% ELSE %]
31     <div class="error">[% error %] : [% message %]
32     </div>
33     <div class="tip">
34       <ul>
35       <li>Check that your database is running.</li>
36       <li>Check your database settings in <code>koha-conf.xml</code>. </li>
37       <li>Check the hostname setting in <code>koha-conf.xml</code>. 
38       Some database servers require <code>127.0.0.1</code> rather than <code>localhost</code>.</li>
39     </div>
40     <p>Please correct these errors and <a href="/cgi-bin/koha/installer/install.pl">start the installer</a> again.
41   [% END %]
42   [% IF ( error ) %][% ELSE %]
43 <input type="hidden" name="step" value="3" />
44 <p> Click 'Next' to continue <input value="Next &gt;&gt;" type="submit" /></p>
45 [% END %]
46 </form>
47 [% ELSE %]
48 <form name="checkinformation" type="post" action="install.pl">
49 <input type="hidden" name="step" value="2" />
50 <input type="hidden" name="checkdb" value="1" />
51 <p> Please click 'Next' to continue if this information is correct <input value="Next &gt;&gt;" type="submit" /></p>
52 </form>
53 [% END %]
54 </div>
55 </body>
56 </html>