-
Notifications
You must be signed in to change notification settings - Fork 27
/
missing.php
42 lines (42 loc) · 1.6 KB
/
missing.php
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--[
LODEL - Logiciel d'Édition ÉLectronique.
@license GPL 2 (http://www.gnu.org/licenses/gpl.html) See COPYING file
@authors See COPYRIGHT file
]-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Erreur : page introuvable</title>
<style type="text/css">
body {background:#fff;color:#444;font:76%/1.5 Verdana, sans-serif;text-align:center}
h1 {color:#d00;font:normal 2.2em Georgia, serif;margin:1em 0;text-align:center}
div {width:50em; margin:0 auto;border:1px solid #ddd}
p {margin:1.5em}
a {color:#4077D7;text-decoration:none}
</style>
</head>
<body>
<h1>
La page demandée est introuvable.
</h1>
<div>
<p>
Aucune page ne correspond à cet URL :
<br /><strong><?php echo htmlspecialchars("http://".$_SERVER['HTTP_HOST'].($_SERVER['SERVER_PORT'] != 80 ? ":". $_SERVER['SERVER_PORT'] : '').$_SERVER['REQUEST_URI']) ?></strong>
</p>
<p>
Veuillez vérifier la saisie dans la barre d'adresse de votre navigateur.
</p>
<p>
Si vous êtes enregistré sur ce site, vous pouvez aussi vous <a rel="nofollow" href="lodel/admin/login.php?url_retour=<?php echo urlencode($_SERVER['REQUEST_URI']); ?>">identifier</a>.
</p>
</div>
<?php
if(file_exists("./missing_perso.html")) // racine site
echo file_get_contents("./missing_perso.html");
elseif(file_exists("../missing_perso.html")) // racine lodel
echo file_get_contents("../missing_perso.html");
?>
</body>
</html>