📄 admin_aspcheck.asp
字号:
<%@ LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
'==================================
'=文 件 名:admin_aspcheck.asp
'=适用版本:游戏天府WAP网站管理系统(CMS)V1.1
'=官方版权:http://www.gotf.cn
'=文件功能:服务器探测文件
'=文件作者:游戏天府
'=发行时间:2007-02-01
'==================================
%>
<!--#include file="wapls_admin_conn.asp"-->
<!--#include file="wapls_admin_top.asp"-->
<%
if session("wapls_adminlogin")<>wapls_sessionvar then
errmsg="您没有登陆或不是管理员。请登陆。"
response.write "<script>window.alert('"&errmsg&"');window.location='admin_login.asp';</script>"
response.End
end if
'不使用输出缓冲区,直接将运行结果显示在客户端
Response.Buffer = False
'声明待检测数组
Dim ObjTotest(26,4)
ObjTotest(0,0) = "MSWC.AdRotator"
ObjTotest(1,0) = "MSWC.BrowserType"
ObjTotest(2,0) = "MSWC.NextLink"
ObjTotest(3,0) = "MSWC.Tools"
ObjTotest(4,0) = "MSWC.Status"
ObjTotest(5,0) = "MSWC.Counters"
ObjTotest(6,0) = "IISSample.ContentRotator"
ObjTotest(7,0) = "IISSample.PageCounter"
ObjTotest(8,0) = "MSWC.PermissionChecker"
ObjTotest(9,0) = "Scripting.FileSystemObject"
ObjTotest(9,1) = "(FSO 文本文件读写)"
ObjTotest(10,0) = "adodb.connection"
ObjTotest(10,1) = "(ADO 数据对象)"
ObjTotest(11,0) = "SoftArtisans.FileUp"
ObjTotest(11,1) = "(SA-FileUp 文件上传)"
ObjTotest(12,0) = "SoftArtisans.FileManager"
ObjTotest(12,1) = "(SoftArtisans 文件管理)"
ObjTotest(13,0) = "LyfUpload.UploadFile"
ObjTotest(13,1) = "(文件上传组件)"
ObjTotest(14,0) = "Persits.Upload.1"
ObjTotest(14,1) = "(ASPUpload 文件上传)"
ObjTotest(15,0) = "w3.upload"
ObjTotest(15,1) = "(Dimac 文件上传)"
ObjTotest(16,0) = "JMail.SmtpMail"
ObjTotest(16,1) = "(Dimac JMail 邮件收发) <a href='http://www.5757.net'>中文手册下载</a>"
ObjTotest(17,0) = "CDONTS.NewMail"
ObjTotest(17,1) = "(虚拟 SMTP 发信)"
ObjTotest(18,0) = "Persits.MailSender"
ObjTotest(18,1) = "(ASPemail 发信)"
ObjTotest(19,0) = "SMTPsvg.Mailer"
ObjTotest(19,1) = "(ASPmail 发信)"
ObjTotest(20,0) = "DkQmail.Qmail"
ObjTotest(20,1) = "(dkQmail 发信)"
ObjTotest(21,0) = "Geocel.Mailer"
ObjTotest(21,1) = "(Geocel 发信)"
ObjTotest(22,0) = "IISmail.Iismail.1"
ObjTotest(22,1) = "(IISmail 发信)"
ObjTotest(23,0) = "SmtpMail.SmtpMail.1"
ObjTotest(23,1) = "(SmtpMail 发信)"
ObjTotest(24,0) = "SoftArtisans.ImageGen"
ObjTotest(24,1) = "(SA 的图像读写组件)"
ObjTotest(25,0) = "W3Image.Image"
ObjTotest(25,1) = "(Dimac 的图像读写组件)"
public IsObj,VerObj
'检查预查组件支持情况及版本
dim i
for i=0 to 25
on error resume next
IsObj=false
VerObj=""
dim TestObj
set TestObj=server.CreateObject(ObjTotest(i,0))
If -2147221005 <> Err then '感谢网友的宝贵建议
IsObj = True
VerObj = TestObj.version
if VerObj="" or isnull(VerObj) then VerObj=TestObj.about
end if
ObjTotest(i,2)=IsObj
ObjTotest(i,3)=VerObj
next
'检查组件是否被支持及组件版本的子程序
sub ObjTest(strObj)
on error resume next
IsObj=false
VerObj=""
dim TestObj
set TestObj=server.CreateObject (strObj)
If -2147221005 <> Err then '感谢网友5757的宝贵建议
IsObj = True
VerObj = TestObj.version
if VerObj="" or isnull(VerObj) then VerObj=TestObj.about
end if
End sub
%>
<table cellspacing="1" cellpadding="4" align="center" class="tableborder" align="center">
<tr class="tablebody">
<td align="center" class="td_title" colspan="2">服务器的有关参数</td>
</tr>
<tr class="tablebody">
<td> 服务器名</td>
<td> <%=Request.ServerVariables("SERVER_NAME")%> [<a href="http://whois.Webhosting.info/<%=replace(Request.ServerVariables("SERVER_NAME"),"www.","")%>" target="_blank" title="先查询域名所在IP,然后用IP查询绑定的其它虚拟主机">查询域名注册信息</a>]</td>
</tr>
<tr class="tablebody">
<td> 服务器IP</td>
<td> <%=Request.ServerVariables("LOCAL_ADDR")%> [<a href="http://whois.Webhosting.info/<%=Request.ServerVariables("LOCAL_ADDR")%>" target="_blank" title="先查询域名所在IP,然后用IP查询绑定的其它虚拟主机">查询此主机绑定的所有域名</a>]</td>
</tr>
<tr class="tablebody">
<td> 服务器端口</td>
<td> <%=Request.ServerVariables("SERVER_PORT")%></td>
</tr>
<tr class="tablebody">
<td> 服务器时间</td>
<td> <%=now%></td>
</tr>
<tr class="tablebody">
<td> IIS版本</td>
<td> <%=Request.ServerVariables("SERVER_SOFTWARE")%></td>
</tr>
<tr class="tablebody">
<td> 脚本超时时间</td>
<td> <%=Server.ScriptTimeout%> 秒</td>
</tr>
<tr class="tablebody">
<td> 本文件路径</td>
<td>
<%=server.mappath(Request.ServerVariables("SCRIPT_NAME"))%></td>
</tr>
<tr class="tablebody">
<td> 服务器CPU数量</td>
<td> <%=Request.ServerVariables("NUMBER_OF_PROCESSORS")%>个</td>
</tr>
<tr class="tablebody"> <td> 服务器解译引擎</td>
<td> <%=ScriptEngine & "/"& ScriptEngineMajorVersion &"."&ScriptEngineMinorVersion&"."& ScriptEngineBuildVersion %></td>
</tr>
<tr class="tablebody">
<td> 服务器操作系统</td>
<td> <%=Request.ServerVariables("OS")%></td> </tr>
</table>
</td>
</tr>
</table>
<%
Dim strClass
strClass = Trim(Request.Form("classname"))
If "" <> strClass then
Response.Write "<br>您指定的组件的检查结果:"
ObjTest(strClass)
If Not IsObj then
Response.Write "<br><font color=red>很遗憾,该服务器不支持 " & strclass & " 组件!</font>"
Else
Response.Write "<br><font class=fonts>恭喜!该服务器支持 " & strclass & " 组件。该组件版本是:" & VerObj & "</font>"
End If
Response.Write "<br>"
end if
%>
<br>
<table cellspacing="1" cellpadding="4" align="center" class="tableborder" align="center">
<tr class="tablebody">
<td align="center" class="td_title" colspan="2"><strong><font color="#ffffff">IIS自带的ASP组件</font></strong></td>
</tr>
<tr class="tablebody" align="center">
<td width="320">组 件 名 称</td>
<td width="130">支持及版本</td>
</tr>
<%For i=0 to 10%>
<tr class="tablebody">
<td> <%=ObjTotest(i,0) & "<font color=#888888> " & ObjTotest(i,1)%></td>
<td>
<%
If Not ObjTotest(i,2) Then
Response.Write "<font color=red><strong>×</strong></font>"
Else
Response.Write "<font class=fonts><strong>√</strong></font> <a title='" & ObjTotest(i,3) & "'>" & left(ObjTotest(i,3),11) & "</a>"
End If
%>
</td>
</tr>
<%next%>
</table>
<br>
<table cellspacing="1" cellpadding="4" align="center" class="tableborder" align="center">
<tr class="tablebody">
<td align="center" class="td_title" colspan="2"><strong><font color="#ffffff">常见的文件上传和管理组件</font></strong></td>
</tr>
<tr class="tablebody" align="center">
<td width="320">组 件 名 称</td>
<td width="130">支持及版本</td>
</tr>
<%For i=11 to 15%>
<tr class="tablebody">
<td> <%=ObjTotest(i,0) & "<font color=#888888> " & ObjTotest(i,1)%></td>
<td>
<%
If Not ObjTotest(i,2) Then
Response.Write "<font color=red><strong>×</strong></font>"
Else
Response.Write "<font class=fonts><strong>√</strong></font> <a title='" & ObjTotest(i,3) & "'>" & left(ObjTotest(i,3),11) & "</a>"
End If%>
</td>
</tr>
<%next%>
</table>
<br>
<table cellspacing="1" cellpadding="4" align="center" class="tableborder" align="center">
<tr class="tablebody">
<td align="center" class="td_title" colspan="2"><strong><font color="#ffffff">常见的收发邮件组件</font></strong></td>
</tr>
<tr class="tablebody" align="center">
<td width="320">组 件 名 称</td>
<td width="130">支持及版本</td>
</tr>
<%For i=16 to 23%>
<tr class="tablebody">
<td> <%=ObjTotest(i,0) & "<font color=#888888> " & ObjTotest(i,1)%></td>
<td>
<%
If Not ObjTotest(i,2) Then
Response.Write "<font color=red><strong>×</strong></font>"
Else
Response.Write "<font class=fonts><strong>√</strong></font> <a title='" & ObjTotest(i,3) & "'>" & left(ObjTotest(i,3),11) & "</a>"
End If%>
</td>
</tr>
<%next%>
</table>
<br>
<table cellspacing="1" cellpadding="4" align="center" class="tableborder" align="center">
<tr class="tablebody">
<td align="center" class="td_title" colspan="2"><strong><font color="#ffffff">图像处理组件</font></strong></td>
</tr>
<tr class="tablebody" align="center">
<td width="320">组 件 名 称</td>
<td width="130">支持及版本</td>
</tr>
<%For i=24 to 25%>
<tr class="tablebody">
<td height="39"> <%=ObjTotest(i,0) & "<font color=#888888> " & ObjTotest(i,1)%></td>
<td>
<%
If Not ObjTotest(i,2) Then
Response.Write "<font color=red><strong>×</strong></font>"
Else
Response.Write "<font class=fonts><strong>√</strong></font> <a title='" & ObjTotest(i,3) & "'>" & left(ObjTotest(i,3),11) & "</a>"
End If%>
</td>
</tr>
<%next%>
</table>
<br>
<table cellspacing="1" cellpadding="4" align="center" class="tableborder" align="center">
<tr class="tablebody">
<td align="center" class="td_title" ><strong><font color="#ffffff">其他组件支持情况检测</font></strong></td>
</tr>
<form action="<%=Request.ServerVariables("SCRIPT_NAME")%>" method="post" id="form1" name="form1">
<tr class="tablebody">
<td align="center" height="30">在下面的输入框中输入你要检测的组件的ProgId或ClassId。
<input type="text" value="" name="classname" size="40">
<input type="submit" value=" 确 定 " class="backc" id="submit1" name="submit1">
<input type="reset" value=" 重 填 " class="backc" id="reset1" name="reset1">
</td>
</tr>
</form>
</table>
<br>
<table cellspacing="1" cellpadding="4" align="center" class="tableborder" align="center">
<tr class="tablebody">
<td align="center" class="td_title" colspan="2"><strong><font color="#ffffff">ASP脚本解释和运算速度测试</font></strong></td>
</tr>
<tr class="tablebody">
<td align="center" colspan="2">我们让服务器执行50万次“1+1”的计算,记录其所使用的时间。 </td>
</tr>
<tr class="tablebody" align="center">
<td width="351">服 务 器</td>
<td width="142">完成时间</td>
</tr>
<tr class="tablebody">
<td width="351"> 中国频道虚拟主机(2002-08-06 9:29)</td>
<td width="142"> 610.9 毫秒</td>
</tr>
<tr class="tablebody">
<td width="351"> 西部数码west263主机(2002-08-06 9:29)</td>
<td width="142"> 357.8 毫秒</td>
</tr>
<tr class="tablebody">
<td width="351"> 商务中国虚拟主机(2002-08-06 9:29)</td>
<td width="142"> 353.1 毫秒</td>
</tr>
<tr class="tablebody">
<td width="351"> 顶尖科技tonydns主机(2002-10-13 14:19)</td>
<td width="142"> 303.2 毫秒</td>
</tr>
<form action="<%=Request.ServerVariables("SCRIPT_NAME")%>" method="post">
<%
dim t1,t2,lsabc,thetime
t1=timer
for i=1 to 500000
lsabc= 1 + 1
next
t2=timer
thetime=cstr(int(( (t2-t1)*10000 )+0.5)/10)
%>
<tr class="tablebody">
<td width="351"> <font color="red">您正在使用的这台服务器</font> </td>
<td width="142"> <font color="red"><%=thetime%> 毫秒</font></td>
</tr>
</form>
</table>
<%
dim log_ip,logger,log_logger
logger=split(request.Cookies("old_ip_time"),"||")
log_logger=logger(2)
log_ip = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
If log_ip = "" Then log_ip = Request.ServerVariables("REMOTE_ADDR")
sql="insert into log (log_object,log_content,log_date,log_logger,log_ip)values('参数探测','服务器参数探测','"&now()&"','"&log_logger&"','"&log_ip&"')"
conn.execute sql
%>
<!--#include file="wapls_admin_bottom.asp"-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -