Overview
Comment: | Message d'erreur pour les hébergeurs mal configurés |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
aea525fa9ac4b430555ab2074a8460e2 |
User & Date: | bohwaz on 2019-12-24 00:12:34 |
Other Links: | manifest | tags |
Context
2020-01-02
| ||
12:41 | Vérifier le contenu du champ page wiki check-in: b3132f3c1e user: bohwaz tags: trunk, stable | |
2019-12-24
| ||
00:12 | Message d'erreur pour les hébergeurs mal configurés check-in: aea525fa9a user: bohwaz tags: trunk | |
2019-12-17
| ||
11:01 | Fix: passage de paramètre de retour au plugin check-in: 449f2f6f3e user: bohwaz tags: trunk, stable | |
Changes
Modified src/include/init.php from [dff3d9c788] to [d8b3de9018].
︙ | ︙ | |||
121 122 123 124 125 126 127 | if (!defined('Garradin\DATA_ROOT')) { define('Garradin\DATA_ROOT', ROOT); } if (!defined('Garradin\WWW_URI')) { | > | > > > > > > | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | if (!defined('Garradin\DATA_ROOT')) { define('Garradin\DATA_ROOT', ROOT); } if (!defined('Garradin\WWW_URI')) { try { $uri = \KD2\HTTP::getRootURI(ROOT); } catch (\UnexpectedValueException $e) { echo "<h2>Impossible de détecter le chemin d'accès web de Garradin.</h2>"; echo '<p><a href="https://fossil.kd2.org/garradin/wikiedit?name=Installation">Consulter l\'aide pour configurer manuellement le chemin d\'accès</a></p>'; exit; } if ($uri == '/www/') { $uri = '/'; } else { readfile(ROOT . '/sous-domaine.html'); exit; |
︙ | ︙ |