summaryrefslogtreecommitdiff
path: root/www/httperror.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/httperror.php')
-rw-r--r--www/httperror.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/www/httperror.php b/www/httperror.php
new file mode 100644
index 0000000..1b06226
--- /dev/null
+++ b/www/httperror.php
@@ -0,0 +1,25 @@
+<?
+/*
+ GET Parameter, die von nginx übergeben werden:
+
+ $_GET["e"] = 404 Fehler
+ 403 Fehler
+ 401 Fehler
+ 500 Fehler
+ 502 Fehler
+ 504 Fehler
+
+ Variablen, die der Funktion übergeben werden:
+
+ $wrong_folder: enthält den ersten Ordner, der nicht in der Datenbank gespeichert ist, also zB. "Bildr"
+*/
+?>
+
+
+<?php include("static/header.html");?>
+ <link rel="stylesheet" type="text/css" href="static/httperror.css">
+<div id="Error-Page-content">
+ <h1 id="Error-Page-head" >404</h1>
+ <h2 id="Error-Page-description" >Wow! I didn&#39;t see that coming...Well, I&#39;m sorry...</h2>
+</div>
+<?php include("static/footer.html");?>