网站后台编缉器不能用!

来源:百度知道 编辑:UC知道 时间:2024/06/14 09:16:20
同一个网站同一个ASP程序,放在两个不同的空间,有一个空间能的后台编缉器不能手,而另一个的却能用,不能用的那个空间需在怎样才可以!

建站系统是限制功能的,后台有个页面应该是IP过滤,一般只允许本机使用各项功能,你把后台引用注册页面的语句删除或者把如同下面程序中的IP改一下
if Request.ServerVariables("SERVER_NAME")="localhost" then
ui=9.985262902319E+15
else
if request.ServerVariables("SERVER_NAME")="127.0.0.1" then
ui=1.9518036579739E+16
else
sql="select * from wc"
set rs=conn.execute(sql)
ui=rs("wc")
end if
end if
end function
end class