Cold Steel Forums down?

jlauffer

Tempt not the Blade
Platinum Member
Joined
Apr 11, 2016
Messages
21,751
Am I the only one that can't get in? Started yesterday or day before.
 
It's been down for a few days, including yesterday morning.
 
Hadn't checked in a few days and didn't know about that. I just went there about a half hour ago and it was working.

BTW starting a while back my browser gives me an error message when I type in www.coldsteelforums.com into the address bar. When I type it into a search engine and click the result, then I get in. Why is that? It's definitely an issue only on my computer. Anyone tech savvy know how to fix that?
 
BTW starting a while back my browser gives me an error message when I type in www.coldsteelforums.com into the address bar. When I type it into a search engine and click the result, then I get in. Why is that? It's definitely an issue only on my computer. Anyone tech savvy know how to fix that?

Same thing happened to me...had it in my favoriites and just stopped working one day. Did a google search, got on that way, then resaved the link...its something like: www.coldsteelforums.com/default.aspx
 
^ there is no vhost for www.coldsteelforums.com, only for coldsteelforums.com

If you request with the WWW host header you will get 404 not found:

curl -svo /dev/null http://www.coldsteelforums.com/
* Hostname was NOT found in DNS cache
* Trying 75.103.77.31...
* Connected to www.coldsteelforums.com (75.103.77.31) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.37.1
> Host: www.coldsteelforums.com
> Accept: */*
>
< HTTP/1.1 404 Not Found
< Content-Type: text/html; charset=us-ascii
* Server Microsoft-HTTPAPI/2.0 is not blacklisted
< Server: Microsoft-HTTPAPI/2.0
< Date: Tue, 24 Jan 2017 15:56:31 GMT
< Connection: close
< Content-Length: 315
<
{ [data not shown]
* Closing connection 0

But if you manually add coldsteel.com as host, you will get redirect to the correct forums destination:

curl -svo /dev/null http://www.coldsteelforums.com/ -H "host: coldsteelforums.com"
* Hostname was NOT found in DNS cache
* Trying 75.103.77.31...
* Connected to www.coldsteelforums.com (75.103.77.31) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.37.1
> Accept: */*
> host: coldsteelforums.com
>
< HTTP/1.1 302 Found
< Content-Type: text/html; charset=utf-8
< Location: http://coldsteelforums.com/default.aspx
* Server Microsoft-IIS/7.5 is not blacklisted
< Server: Microsoft-IIS/7.5
< X-Powered-By: ASP.NET
< Date: Tue, 24 Jan 2017 15:57:49 GMT
< Content-Length: 156
<
{ [data not shown]
* Connection #0 to host www.coldsteelforums.com left intact
 
Thanks hkyew, yeah that's the explanation I was looking for: No "vhost" for the www site, just for "coldsteelforums.com". Makes sense now. I guess I wasn't the only one where using the "www" suddenly stopped working. When I type just the "coldsteelforum.com" into the address bar, it works! For a while, I was getting in like jlauffer, by using the link in a google search result. I guess I won't be auditioning for any computer geek jobs anytime soon!:D
 
Back
Top