我第一次访问一个网站,我得到一个500 - Internal server error 。 当我点击重新加载的网站工作得很好,并将继续工作。 如果我打开不同的浏览器或closures并重新打开当前的浏览器,重复该过程。
http://motherscarehawaii.teamvision.biz/
服务器在Windows Server 2008 R2 + SP1上运行IIS7.5,这是服务器上的许多虚拟主机之一,所有其他的工作正常。
我看到在C:\Windows\System32\LogFiles\HTTPERR\httperr1.log列出的HTTP/1.1 GET / 503 32 Disabled motherscarehawaii.teamvision.biz ,但不知道什么是禁用的。 应用程序池设置为在经典模式下运行.Net Framework v2.0.50727。
任何想法是什么导致错误,以及如何解决它?
这是会话cookie和网站如何处理它们。
第一遍,我的结尾没有会话cookie,
$ wget --load-cookies cookies --save-cookies cookies --keep-session-cookies -S http://motherscarehawaii.teamvision.biz/ --2011-07-21 21:37:05-- http://motherscarehawaii.teamvision.biz/ Resolving motherscarehawaii.teamvision.biz (motherscarehawaii.teamvision.biz)... 206.72.120.169 Connecting to motherscarehawaii.teamvision.biz (motherscarehawaii.teamvision.biz)|206.72.120.169|:80... connected. HTTP request sent, awaiting response... HTTP/1.1 500 Internal Server Error Cache-Control: private Content-Type: text/html Server: Microsoft-IIS/7.5 Set-Cookie: ASPSESSIONIDASCRDQBC=GAONOAEADFONKBABDHPPMCLG; path=/ X-Powered-By: ASP.NET Date: Thu, 21 Jul 2011 20:36:51 GMT Connection: keep-alive Content-Length: 1208 2011-07-21 21:37:05 ERROR 500: Internal Server Error.
第二遍,现在从文件加载cookie,
$ wget --load-cookies cookies --save-cookies cookies --keep-session-cookies -S http://motherscarehawaii.teamvision.biz/ --2011-07-21 21:37:06-- http://motherscarehawaii.teamvision.biz/ Resolving motherscarehawaii.teamvision.biz (motherscarehawaii.teamvision.biz)... 206.72.120.169 Connecting to motherscarehawaii.teamvision.biz (motherscarehawaii.teamvision.biz)|206.72.120.169|:80... connected. HTTP request sent, awaiting response... HTTP/1.1 200 OK Cache-Control: private Content-Length: 2843 Content-Type: text/html Server: Microsoft-IIS/7.5 X-Powered-By: ASP.NET Date: Thu, 21 Jul 2011 20:36:53 GMT Connection: keep-alive Length: 2843 (2.8K) [text/html] Saving to: `index.html' 100%[=======================================================================================================>] 2,843 --.-K/s in 0.1s 2011-07-21 21:37:07 (24.1 KB/s) - `index.html' saved [2843/2843]
我希望能帮助你进一步追踪。