Skip to content

Instantly share code, notes, and snippets.

@miguel456
Forked from pitch-gist/gist:2999707
Last active August 1, 2016 13:55
Show Gist options
  • Save miguel456/1da9d45e8034057f0ebc4288c6d09921 to your computer and use it in GitHub Desktop.
Save miguel456/1da9d45e8034057f0ebc4288c6d09921 to your computer and use it in GitHub Desktop.
HTML: Simple Maintenance Page
<?php // Modified version for custom wordpress database error page - php from digwp.com
header('HTTP/1.1 503 Service Temporarily Unavailable');
header('Status: 503 Service Temporarily Unavailable');
header('Retry-After: 3600'); // 1 hour = 3600 seconds
/* Delete this comment if you want to be warned by email - This uses PHP's mail(); function so make sure to have it configured on php's config file.
mail("spamless@domain.tld", "subject", "msg", "From: self explanatory");
*/
// Upload this whole file (including html) to /wp-content/ and do not change its name! This file includes the very small change to the fork I made.
?>
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
<article>
<h1>We&rsquo;ll be back soon!</h1>
<div>
<p>Sorry for the inconvenience but we&rsquo;re performing some maintenance at the moment. If you need to you can always <a href="mailto:myname@mydomain.tld">contact us</a>, otherwise we&rsquo;ll be back online shortly!</p>
<p>&mdash; The Team</p>
<div align="center"> <img src="https://worldofdiamonds.us.to/assets/uhoh.gif"> <!-- again change this to your source, don't use my site -->
</div>
</article>
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
<article>
<h1>We&rsquo;ll be back soon!</h1>
<div>
<p>Sorry for the inconvenience but we&rsquo;re performing some maintenance at the moment. If you need to you can always <a href="mailto:#">contact us</a>, otherwise we&rsquo;ll be back online shortly!</p>
<p>&mdash; The Team</p>
<div align="center">
<img src="https://worldofdiamonds.us.to/assets/uhoh.gif"> <!-- « Change website link to your source for your own gif or image (i.e the gif on your website or on imgur.com) -->
</div>
</div>
</article>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment