-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.html
More file actions
204 lines (175 loc) · 4.47 KB
/
errors.html
File metadata and controls
204 lines (175 loc) · 4.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<html>
<head>
<title>Skparab1 Forum - Error troubleshooting</title>
<link rel="stylesheet" type="text/css" href="./paper.css">
<script async defer src="https://buttons.github.io/buttons.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<style>
body {
background-color: rgb(0, 0, 0);
}
.dank {
font-size: 30px !important;
}
h1 {
color: aliceblue;
}
h2 {
color: aliceblue;
}
h3 {
color: lightgray;
}
h4 {
color: lightblue;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: lightgrey;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.button {
background-color: white;
border: none;
color: white;
padding: 0px 32px;
text-align: center;
text-decoration: none;
width: 49%;
display: inline-block;
font-size: 16px;
transition: all 0.2s ease-in-out;
box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
border-color: white;
border-width: 1px;
border-style: dotted;
}
button:hover {
cursor: pointer;
background:#bbb;
color: black;
border-color: black;
border-width: 1px;
border-style: dotted;
}
form {
width: 50%;
}
.hide {
display: none;
}
.show {
display: block;
}
</style>
</head>
<body>
<h1>Skparab1 forum - Message sending Error troubleshooting</h1>
<br><hr>
<h2>Non-Fatal errors</h2>
<h3>-HttpError: NetworkError when attempting to fetch resource.</h3>
<h4>   -Cause: This error message means that the system encountered a problem when attempting to load or send content. It is likely related to The Cross-Origin Resource Sharing (CORS) mechanism gives web servers cross-domain access controls, which enable secure cross-domain data transfers. Modern browsers use CORS in an API container - such as XMLHttpRequest or Fetch - to mitigate risks of cross-origin HTTP requests.</h4>
<h4>   -What it means: Your message has likely gotten through, but you should check at the <a href="https://github.com/Skparab1/server/actions/workflows/main.yml">Server Backend</a></h4>
<br><hr>
<h2>Fatal errors</h2>
<h3>HttpError: Bad credentials</h3>
<h4>   -Cause: Github API is unable to process the request due to bad credentials</h4>
<h4>   -What it means: Skparab1's Github token has expired! :(( contact him asap</h4>
<br><hr>
<h2>This is the end of this troubleshooting guide! If you have received any other errors, <a href="https://github.com/Skparab1/server/edit/main/errors.html">open a pr!</a></h2>
</body>
</html>