1 | <form name="install_form" action="<?= $env->url(array("e" => "install")) ?>" method="post"> |
---|
2 | <h2>La base de données</h2> |
---|
3 | <p> |
---|
4 | Indiquez les paramètres de la base dans laquelle |
---|
5 | les tables seront ajoutées : |
---|
6 | </p> |
---|
7 | <table class="admin"> |
---|
8 | <tr> |
---|
9 | <th>type de base :</th> |
---|
10 | <td> |
---|
11 | <select name="db_type"> |
---|
12 | <option value="mysql"<?= $_POST["db_type"] == "mysql" ? " selected" : "" ?>>mysql</option> |
---|
13 | <option value="mysqli"<?= $_POST["db_type"] == "mysqli" ? " selected" : "" ?>>mysqli</option> |
---|
14 | <option value="pgsql"<?= $_POST["db_type"] == "pgsql" ? " selected" : "" ?>>pgsql</option> |
---|
15 | <option value="sqlite"<?= $_POST["db_type"] == "sqlite" ? " selected" : "" ?>>sqlite</option> |
---|
16 | </select> |
---|
17 | </td> |
---|
18 | </tr> |
---|
19 | <tr> |
---|
20 | <th>hote</th> |
---|
21 | <td><input type="text" name="db_hote" value="<?= $_POST["db_hote"] ?>" /></td> |
---|
22 | </tr> |
---|
23 | <tr> |
---|
24 | <th>base</th> |
---|
25 | <td><input type="text" name="db_base" value="<?= $_POST["db_base"] ?>" /></td> |
---|
26 | </tr> |
---|
27 | <tr> |
---|
28 | <th>user</th> |
---|
29 | <td><input type="text" name="db_user" value="<?= $_POST["db_user"] ?>" /></td> |
---|
30 | </tr> |
---|
31 | <tr> |
---|
32 | <th>password</th> |
---|
33 | <td><input type="password" name="db_password" /></td> |
---|
34 | </tr> |
---|
35 | <tr> |
---|
36 | <th>prefixe de table</th> |
---|
37 | <td><input type="text" name="db_prefix" value="<?= $_POST["db_prefix"] ?>" /></td> |
---|
38 | </tr> |
---|
39 | </table> |
---|
40 | <h2>Configuration</h2> |
---|
41 | <table class="admin"> |
---|
42 | <tr> |
---|
43 | <th>nom du site</th> |
---|
44 | <td><input type="text" name="site_name" value="<?= $_POST["site_name"] ?>" /></td> |
---|
45 | </tr> |
---|
46 | <tr> |
---|
47 | <th>email de l'administrateur</th> |
---|
48 | <td><input type="text" name="email_admin" value="<?= $_POST["email_admin"] ?>" /></td> |
---|
49 | </tr> |
---|
50 | </table> |
---|
51 | <p> |
---|
52 | Par default, la configuration sera enregistrée dans le fichier <b>config.php</b> |
---|
53 | </p> |
---|
54 | <p> |
---|
55 | Vous pouvez préciser un autre nom, éventuellement dans un autre dossier : |
---|
56 | </p> |
---|
57 | <table class="admin"> |
---|
58 | <tr> |
---|
59 | <th>fichier de configuration</th> |
---|
60 | <td><input type="text" name="config_file" value="<?= $_POST["config_file"] ? $_POST["config_file"] : "config.php"?>" /></td> |
---|
61 | </tr> |
---|
62 | </table> |
---|
63 | <p> |
---|
64 | Si vous indiquez un chemin commençant par un slash (/) le chemin sera absolu, dans le système de fichiers. Sinon, |
---|
65 | il sera relatif au dossier dans lequel vous avez uploadé les fichiers du site. |
---|
66 | </p> |
---|
67 | |
---|
68 | <table class="admin"> |
---|
69 | <tr> |
---|
70 | <td align="right"><input type="submit" value="installer" /></td> |
---|
71 | </tr> |
---|
72 | </table> |
---|
73 | </form> |
---|