📄 admin_data.bak.asp
字号:
<!-- #include file="include/onlogin.asp" -->
<!-- #include file="include/conn.asp" -->
<%
tit="<a href='admin_data.asp'>数据更新</a> ┋ " & _
"<a href='admin_sql.asp'>执行SQL</a> ┋ " & _
"<a href='admin_datamanage.asp?action=BackupData'>备份数据库</a> ┋ " & _
"<a href='admin_datamanage.asp?action=CompressData'>压缩数据库</a> ┋ " & _
"<a href='admin_datamanage.asp?action=RestoreData'>恢复数据库</a> ┋ " & _
"<a href='admin_datamanage.asp?action=SpaceSize'>系统空间占用</a>"
response.write header(10,tit)
dim actions:actions=trim(request.querystring("actions"))
select case action
case "update_config"
call update_config()
case "update_forum"
call update_forum()
case "clear_notes"
call clear_notes()
case "clear_message"
call clear_message()
end select
sub update_config()
dim rs,sql,num_topic,num_data,num_reg,new_username,num_article,num_down
num_reg=0:num_topic=0:num_data=0:num_article=0:num_down=0
set rs=server.createobject("adodb.recordset")
sql="select username from user_data order by id desc"
rs.open sql,conn,1,1
if not(rs.eof and rs.bof) then
num_reg=int(rs.recordcount)
new_username=rs("username")
end if
rs.close
sql="select count(id) from bbs_topic"
set rs=conn.execute(sql)
if not(rs.eof and rs.bof) then num_topic=int(rs(0))
rs.close
sql="select count(id) from bbs_data"
set rs=conn.execute(sql)
if not(rs.eof and rs.bof) then num_data=int(rs(0))
rs.close
sql="select count(id) from article where hidden=1"
set rs=conn.execute(sql)
if not(rs.eof and rs.bof) then num_article=int(rs(0))
rs.close
sql="select count(id) from down where hidden=1"
set rs=conn.execute(sql)
if not(rs.eof and rs.bof) then num_down=int(rs(0))
rs.close
sql="update configs set num_topic="&num_topic&",num_data="&num_data&",num_reg="&num_reg&",new_username='"&new_username&"',num_article="&num_article&",num_down="&num_down&" where id=1"
conn.execute(sql)
response.write "<script language=javascript>alert(""成功更新了网站统计数据!"");</script>"
end sub
sub update_forum()
dim rsf,sqlf,rssum,i,rs,sql,forumid,t1,t2,t3
sqlf="select * from bbs_forum order by forum_id"
set rsf=conn.execute(sqlf)
do while not rsf.eof
forumid=rsf("forum_id")
set rs=server.createobject("adodb.recordset")
sql="select * from bbs_topic where forum_id="&forumid&" order by id desc"
rs.open sql,conn,1,1
if rs.eof and rs.bof then
t1=0
t2="|||"
else
t1=rs.recordcount
t2=rs("username") &"|"& rs("tim") &"|"& rs("id") &"|"& rs("topic")
t2=replace(t2,"'","")
end if
rs.close:set rs=nothing
sql="select count(*) from bbs_data where forum_id="&forumid
set rs=conn.execute(sql)
t3=rs(0)
rs.close:set rs=nothing
if int(t3)<1 then t3=0
sql="update bbs_forum set forum_topic_num="&t1&",forum_new_info='"&t2&"',forum_data_num="&t3&" where forum_id="&forumid
conn.execute(sql)
rsf.movenext
loop
rsf.close:set rsf=nothing
response.write "<script language=javascript>alert(""成功更新了分论坛数据!"");</script>"
end sub
sub clear_notes()
dim clear_msg
select case actions
case "week"
sql="delete from notes where DateDiff('d',tim,'"&now_time&"')>7"
'sql="delete from notes where datediff(""d"",tim,'"&now_time&"')>7"
clear_msg="一周前"
case "all"
sql="delete from notes"
clear_msg="所有"
case else
sql="delete from notes where DateDiff('d',tim,'"&now_time&"')>30"
'sql="delete from notes where datediff(""d"",tim,'"&now_time&"')>30"
clear_msg="一个月前"
end select
conn.execute(sql)
response.write "<script language=javascript>alert(""成功清理了"&clear_msg&"的消费数据!"");</script>"
end sub
sub clear_message()
dim clear_msg
select case actions
case "week"
sql="delete from user_mail where DateDiff('d',tim,'"&now_time&"')>7"
'sql="delete from user_mail where datediff(""d"",tim,'"&now_time&"')>7"
clear_msg="一周前"
case "all"
sql="delete from user_mail"
clear_msg="所有"
case else
sql="delete from user_mail where DateDiff('d',tim,'"&now_time&"')>30"
'sql="delete from user_mail where datediff(""d"",tim,'"&now_time&"')>30"
clear_msg="一个月前"
end select
conn.execute(sql)
response.write "<script language=javascript>alert(""成功清理了"&clear_msg&"的用户短信息!"");</script>"
end sub
%>
<table border=1 cellspacing=0 cellpadding=2 width=500 bordercolorlight=#C0C0C0 bordercolordark=#FFFFFF>
<tr height=50 align=center>
<td width='20%'><font class=red_2>注意事项</font></td>
<td width='80%'>下面有的操作可能将非常消耗服务器资源,而且更新时间很长,请仔细确认每一步操作后执行!</td>
</tr>
<tr align=center height=80>
<td><font class=red_3>更新网站总数据</font></td>
<td class=htd>点击下面的按钮将重新计算整个论网站的基本信息,包括新闻、文章、软件、论坛等,建议每隔一段时间运行一次。<br>
<input type=button value='立即更新网站统计数据' onclick=update_config() class=red></td>
</tr>
<tr align=center height=80>
<td><font class=red_3>更新分论坛数据</font></td>
<td class=htd>点击下面的按钮将重新计算每个论坛的帖子主题、回复数量,最新主题、回复、时间等信息,建议每隔一段时间运行一次。<br>
<input type=button value='立即更新分论坛数据' onclick=update_forum() class=red></td>
</tr>
<tr align=center height=80>
<td><font class=red_3>清理消费数据</font></td>
<td class=htd>点击下面的按钮将重新清理用户消费货币的数据信息,建议每隔一段时间运行一次。<br>
<input type=button value='清除一个月前的数据' onclick="javascript:clear_notes('month');" class=red style="width:140px;">
<input type=button value='清除一周前的数据' onclick="javascript:clear_notes('week');" class=red style="width:120px;">
<input type=button value='全部清空' onclick="javascript:clear_notes('all');" class=red>
</td>
</tr>
<tr align=center height=80>
<td><font class=red_3>清理用户短信息</font></td>
<td class=htd>点击下面的按钮将重新清理用户短信息的数据信息,建议每隔一段时间运行一次。<br>
<input type=button value='清除一个月前的短信' onclick="javascript:clear_message('month');" class=red style="width:140px;">
<input type=button value='清除一周前的短信' onclick="javascript:clear_message('week');" class=red style="width:120px;">
<input type=button value='全部清空' onclick="javascript:clear_message('all');" class=red>
</td>
</tr>
</table>
<script language=JavaScript>
<!--
function update_config()
{
if (confirm("此操作将 更新网站统计数据!\n\n真的要进行吗?\n\n更新后将无法恢复!"))
window.location="?action=update_config"
}
function update_forum()
{
if (confirm("此操作将 更新分论坛数据!\n\n真的要进行吗?\n\n更新后将无法恢复!"))
window.location="?action=update_forum"
}
function clear_notes(cv)
{
if (confirm("此操作将 清理消费数据!\n\n真的要进行吗?\n\n更新后将无法恢复!"))
window.location="?action=clear_notes&actions="+cv
}
function clear_message(cv)
{
if (confirm("此操作将 清理用户短信息!\n\n真的要进行吗?\n\n更新后将无法恢复!"))
window.location="?action=clear_message&actions="+cv
}
//-->
</script>
<%
call close_conn()
response.write ender()
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -