1
0
Fork 0

Add error pages to wedding.aclindsay.com

This commit is contained in:
Aaron Lindsay 2014-01-24 07:40:28 -05:00
parent 995a9f52c2
commit c4fa5efcee
5 changed files with 69 additions and 0 deletions

14
wedding/errors/400.php Normal file
View File

@ -0,0 +1,14 @@
<?php
include_once("../common.php");
include("../header_top.php");
?>
<title>Bad Request - aclindsay.com</title>
<?php include("../header_bottom.php"); ?>
<div>
<h2 class="center">Error 400 - Bad Request</h2>
<p>This HTTP request was malformed, and could not be processed. You may attempt to reload this page, but the software you are using (your browser) may be at fault.</p>
<p>If you believe you are seeing this page in error, please <a href="<?php echo $protocol; ?>aclindsay.com/contact/">contact me</a>.</p>
</div>
<?php include("../footer.php"); ?>

14
wedding/errors/401.php Normal file
View File

@ -0,0 +1,14 @@
<?php
include_once("../common.php");
include("../header_top.php");
?>
<title>Authorization Required - aclindsay.com</title>
<?php include("../header_bottom.php"); ?>
<div>
<h2 class="center">Error 401 - Authorization Required</h2>
<p>The page you are requesting requires authorization. Please refresh this page and provide your login credentials, if you have them, or continue browsing with our <a href="<?php echo $base_url; ?>">homepage</a>.</p>
<p>If you believe you are seeing this page in error, please <a href="<?php echo $protocol; ?>aclindsay.com/contact/">contact me</a>.</p>
</div>
<?php include("../footer.php"); ?>

14
wedding/errors/403.php Normal file
View File

@ -0,0 +1,14 @@
<?php
include_once("../common.php");
include("../header_top.php");
?>
<title>Forbidden - aclindsay.com</title>
<?php include("../header_bottom.php"); ?>
<div>
<h2 class="center">Error 403 - Forbidden</h2>
<p>The page you are requesting will not be returned. Refreshing the page won't help either. Please use your browser's back buttons to return to the page you came from, or continue browsing with our <a href="<?php echo $base_url; ?>">homepage</a>.</p>
<p>If you believe you are seeing this page in error, please <a href="<?php echo $protocol; ?>aclindsay.com/contact/">contact me</a>.</p>
</div>
<?php include("../footer.php"); ?>

14
wedding/errors/404.php Normal file
View File

@ -0,0 +1,14 @@
<?php
include_once("../common.php");
include("../header_top.php");
?>
<title>Page Not Found - aclindsay.com</title>
<?php include("../header_bottom.php"); ?>
<div>
<h2 class="center">Error 404 - Page Not Found</h2>
<p>Oops, the page you are looking for does not exist. You may use your browser's back button to return to the page from which you came, or visit the <a href="<?php echo $base_url; ?>">homepage</a>.</p>
<p>If you believe you are seeing this page in error, or are searching for a page which no longer exists (but may still be linked to by other sites), please <a href="<?php echo $protocol; ?>aclindsay.com/contact/">contact me</a>. I will do my best to point you in the right direction.</p>
</div>
<?php include("../footer.php"); ?>

13
wedding/errors/500.php Normal file
View File

@ -0,0 +1,13 @@
<?php
include_once("../common.php");
include("../header_top.php");
?>
<title>Internal Server Error - aclindsay.com</title>
<?php include("../header_bottom.php"); ?>
<div>
<h2 class="center">Error 500 - Internal Server Error</h2>
<p>Oops, the server encountered an error while processing your request for this page. Please refresh the page and try again. If the error persists, please <a href="<?php echo $protocol; ?>aclindsay.com/contact">contact me</a>.</p>
</div>
<?php include("../footer.php"); ?>