|
Server IP : 10.123.20.5 / Your IP : 216.73.217.6 Web Server : Apache System : Linux webm005.cluster123.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : wqgepnx ( 163969) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/wqgepnx/www/wp-includes/sitemaps/../fonts/../blocks/../blocks/code/../math/../../../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
// Send 503 Service Unavailable status
http_response_code(503);
header("Retry-After: 3600"); // seconds
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Website Under Maintenance</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background: #f4f6f8;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
background: #ffffff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
max-width: 420px;
}
h1 {
color: #333;
}
p {
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>🚧 Website Under Maintenance</h1>
<p>We are currently performing scheduled maintenance.</p>
<p>Please check back again soon.</p>
<p><small>Thank you for your patience.</small></p>
</div>
</body>
</html>