summaryrefslogtreecommitdiff
path: root/www/httperror.php
diff options
context:
space:
mode:
authorHorus32014-03-12 02:50:30 +0100
committerHorus32014-03-12 02:50:30 +0100
commit8970954933ecf4b5c842027faa7c52f85cc25fe2 (patch)
treee502119b624197871550d72d55c2e9a9f2a4f05b /www/httperror.php
parent0148c370ea13ee0469bd67260cf8c9fe9c97677d (diff)
downloadfiles.iamfabulous.de-8970954933ecf4b5c842027faa7c52f85cc25fe2.tar.gz
Structure in functions. Stronger hash algorith for password safety, also pepper.
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");?>