error500.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html PUBLIC
  2. "-//W3C//DTD XHTML 1.0 Transitional//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  7. <meta name="language" content="fr"/>
  8. <title>Erreur interne du serveur</title>
  9. <style type="text/css">
  10. /*<![CDATA[*/
  11. body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;}
  12. h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
  13. h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
  14. h3 {font-family:"Verdana";font-weight:bold;font-size:11pt}
  15. p {font-family:"Verdana";font-weight:normal;color:black;font-size:9pt;margin-top: -5px}
  16. .version {color: gray;font-size:8pt;border-top:1px solid #aaaaaa;}
  17. /*]]>*/
  18. </style>
  19. </head>
  20. <body>
  21. <h1>Erreur interne du serveur</h1>
  22. <h2><?php echo nl2br(CHtml::encode($data['message'])); ?></h2>
  23. <p>
  24. Une erreur interne est apparue lorsque le serveur web traitait votre requete.
  25. Veuillez contacter <?php echo $data['admin']; ?> pour signaler ce problème.
  26. </p>
  27. <p>
  28. Merci.
  29. </p>
  30. <div class="version">
  31. <?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?>
  32. </div>
  33. </body>
  34. </html>