Skip to content

Commit 48ddf77

Browse files
Add important notice for Cloudflare error 1101
Added an important notice element to inform users about Cloudflare error 1101 and provide guidance on how to proceed.
1 parent 870a1e3 commit 48ddf77

1 file changed

Lines changed: 61 additions & 0 deletions

File tree

webapps/gofile.io/index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,67 @@
1313
<summary>Gofile.io Cloudflare Worker Index</summary>
1414
<p>This web app indexes all files and folders from Gofile.io using Cloudflare Workers. It supports multi-threaded downloading, pause/resume features, improved stability, and increased speed. It's perfect for fast and reliable file management online. Use beta theme for Private/shared links </p>
1515
</details>
16+
17+
<!-- Important Notice Element -->
18+
<div id="important-notice" style="
19+
position: fixed;
20+
top: 0;
21+
left: 0;
22+
width: 100%;
23+
height: 100%;
24+
background: rgba(0,0,0,0.6);
25+
display: flex;
26+
align-items: center;
27+
justify-content: center;
28+
z-index: 9999;
29+
font-family: Arial, sans-serif;
30+
">
31+
<div style="
32+
background: #fff;
33+
border: 2px solid red;
34+
padding: 20px;
35+
max-width: 600px;
36+
width: 90%;
37+
text-align: center;
38+
box-shadow: 0 0 15px rgba(255,0,0,0.5);
39+
">
40+
<h2 style="color: red; margin-top: 0;">⚠️ Important Notice</h2>
41+
<p style="color: red; font-size: 15px; line-height: 1.5;">
42+
Update: Cloudflare is now returning an error, <b>"Error 1101"</b>, for some users.
43+
Already-deployed apps may still work, but new deployments or edits during deployment
44+
may show the same error. This happens because Cloudflare is blocking requests or
45+
deployments are stuck.
46+
<br><br>
47+
If this occurs, delete the app completely and create a new one.
48+
The error may repeat. I tried to fix this, but Cloudflare is still detecting it.
49+
Currently, only preview works.
50+
</p>
51+
52+
<button onclick="acknowledgeNotice()" style="
53+
margin-top: 15px;
54+
padding: 10px 20px;
55+
background: red;
56+
color: white;
57+
border: none;
58+
cursor: pointer;
59+
font-size: 14px;
60+
">
61+
OK, I Understand
62+
</button>
63+
</div>
64+
</div>
65+
66+
<script>
67+
// Hide notice if already acknowledged
68+
if (localStorage.getItem("importantNoticeAcknowledged")) {
69+
document.getElementById("important-notice").style.display = "none";
70+
}
71+
72+
function acknowledgeNotice() {
73+
localStorage.setItem("importantNoticeAcknowledged", "true");
74+
document.getElementById("important-notice").style.display = "none";
75+
}
76+
</script>
1677
<style>
1778
:root {
1879
--primary: #00ffd5;

0 commit comments

Comments
 (0)