418, not 514

main
eric 2024-03-15 16:53:24 -04:00
parent 7a1fd60eaf
commit 1c9e40214e
2 changed files with 4 additions and 4 deletions

View File

@ -40,6 +40,9 @@ When a link is checked we record the status code and content type returned by th
</ul> </ul>
In any case, the correct URL should be loaded to DOAB, or in the worst case, deleted. In any case, the correct URL should be loaded to DOAB, or in the worst case, deleted.
<dt id='code418'>"418" means the website was pretending not to be there.
<dd> This is also known as "I am a <a href="https://en.wikipedia.org/wiki/Hyper_Text_Coffee_Pot_Control_Protocol">Teapot</a>". We use this code to describe sites that try to block robots in the most annoying and self-defeating manner possible. Return 503 instead.
<dt id='code500'>"500" means something has gone wrong at the website server. <dt id='code500'>"500" means something has gone wrong at the website server.
<dd> you have a server problem. <dd> you have a server problem.
@ -55,9 +58,6 @@ When a link is checked we record the status code and content type returned by th
<dt id='code511'>"511" indicates a problem with the security of the connection - most often an incomplete certificate. <dt id='code511'>"511" indicates a problem with the security of the connection - most often an incomplete certificate.
<dd> The <a href="https://www.ssllabs.com/ssltest/">SSL Server Test</a> can help you diagnose this problem. But beware - current we browsers often ignore some security problems, so the link might work when you try to test it. But because the browser vendors are gradually clamping down on weak security, the next update to Firefox or Chrome might start issuing warnings that you website is unsafe. Better to fix it now. <dd> The <a href="https://www.ssllabs.com/ssltest/">SSL Server Test</a> can help you diagnose this problem. But beware - current we browsers often ignore some security problems, so the link might work when you try to test it. But because the browser vendors are gradually clamping down on weak security, the next update to Firefox or Chrome might start issuing warnings that you website is unsafe. Better to fix it now.
<dt id='code514'>"514" means the website was pretending not to be there.
<dd> This is also known as "I am a <a href="https://en.wikipedia.org/wiki/Hyper_Text_Coffee_Pot_Control_Protocol">Teapot</a>". We use this code to describe sites that try to block robots in the most annoying and self-defeating manner possible. Return 503 instead.
<dt id='code524'>"524" means the website didn't respond in a reasonable time. <dt id='code524'>"524" means the website didn't respond in a reasonable time.
<dd> This might be an intermittent problem. Links get checked every month, so look at the the history of checks to see if that's so. Otherwise, you probably have a server problem. <dd> This might be an intermittent problem. Links get checked every month, so look at the the history of checks to see if that's so. Otherwise, you probably have a server problem.

View File

@ -45,12 +45,12 @@ When a link is checked we record the status code and content type returned by th
<li><a href="{% url 'fixing' %}#code302">"301" or "302"</a> indicates a bad redirect. <li><a href="{% url 'fixing' %}#code302">"301" or "302"</a> indicates a bad redirect.
<li><a href="{% url 'fixing' %}#code403">"403"</a> indicates a misconfigured server that is not allowing access to the promised resource. <li><a href="{% url 'fixing' %}#code403">"403"</a> indicates a misconfigured server that is not allowing access to the promised resource.
<li><a href="{% url 'fixing' %}#code404">"404"</a> means the link is broken - the resource is not found. <li><a href="{% url 'fixing' %}#code404">"404"</a> means the link is broken - the resource is not found.
<li><a href="{% url 'fixing' %}#code514">"418"</a> means the website was pretending not to be there.
<li><a href="{% url 'fixing' %}#code500">"500"</a> means something has gone wrong at the website server. <li><a href="{% url 'fixing' %}#code500">"500"</a> means something has gone wrong at the website server.
<li><a href="{% url 'fixing' %}#code502">"502"</a> is a gateway error. Some websites use load balancers or content distribution networks; if these gateways have a problem connecting with the source website, they send a 502 response. <li><a href="{% url 'fixing' %}#code502">"502"</a> is a gateway error. Some websites use load balancers or content distribution networks; if these gateways have a problem connecting with the source website, they send a 502 response.
<li><a href="{% url 'fixing' %}#code503">"503"</a> means that a website couldnt be reached. This could happen because the server was too busy, under maintenance, or something else. Amazon's robot blocker returns 503 codes, so these must be checked manually. <li><a href="{% url 'fixing' %}#code503">"503"</a> means that a website couldnt be reached. This could happen because the server was too busy, under maintenance, or something else. Amazon's robot blocker returns 503 codes, so these must be checked manually.
<li><a href="{% url 'fixing' %}#code504">"504"</a> indicates that the server, while acting as a gateway or proxy did not get a response in time from an upstream server. <li><a href="{% url 'fixing' %}#code504">"504"</a> indicates that the server, while acting as a gateway or proxy did not get a response in time from an upstream server.
<li><a href="{% url 'fixing' %}#code511">"511"</a> indicates a problem with the security of the connection - most often an incomplete certificate. <li><a href="{% url 'fixing' %}#code511">"511"</a> indicates a problem with the security of the connection - most often an incomplete certificate.
<li><a href="{% url 'fixing' %}#code514">"514"</a> means the website was pretending not to be there.
<li><a href="{% url 'fixing' %}#code524">"524"</a> means the website didn't respond in a reasonable time. <li><a href="{% url 'fixing' %}#code524">"524"</a> means the website didn't respond in a reasonable time.
<li><a href="{% url 'fixing' %}#code0">"None" or "0"</a> means something has gone terribly wrong. Possibly a bug in the checker or a malformed url. <li><a href="{% url 'fixing' %}#code0">"None" or "0"</a> means something has gone terribly wrong. Possibly a bug in the checker or a malformed url.
</ul> </ul>