ClearSearchAll.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"searchall");
  20. //清理多余数据
  21. function ClearSearchAll($start,$line,$userid,$username){
  22. global $empire,$dbtbpre,$class_r,$fun_r;
  23. $line=(int)$line;
  24. if(empty($line))
  25. {
  26. $line=500;
  27. }
  28. $start=(int)$start;
  29. $b=0;
  30. $sql=$empire->query("select id,classid,sid from {$dbtbpre}enewssearchall where sid>$start order by sid limit ".$line);
  31. while($r=$empire->fetch($sql))
  32. {
  33. $b=1;
  34. $newstart=$r['sid'];
  35. if(empty($class_r[$r[classid]]['tbname']))
  36. {
  37. $empire->query("delete from {$dbtbpre}enewssearchall where sid='".$r['sid']."'");
  38. continue;
  39. }
  40. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$class_r[$r[classid]]['tbname']."_index where id='$r[id]' and classid='$r[classid]' limit 1");
  41. if(!$num)
  42. {
  43. $empire->query("delete from {$dbtbpre}enewssearchall where sid='".$r['sid']."'");
  44. }
  45. }
  46. if(empty($b))
  47. {
  48. //操作日志
  49. insert_dolog("");
  50. printerror('ClearSearchAllSuccess','ClearSearchAll.php'.hReturnEcmsHashStrHref2(1));
  51. }
  52. echo"<meta http-equiv=\"refresh\" content=\"0;url=ClearSearchAll.php?enews=ClearSearchAll&line=$line&start=$newstart".hReturnEcmsHashStrHref(0)."\">".$fun_r[OneClearSearchAllSuccess]."(ID:<font color=red><b>".$newstart."</b></font>)";
  53. exit();
  54. }
  55. $enews=$_GET['enews'];
  56. if($enews)
  57. {
  58. hCheckEcmsRHash();
  59. @set_time_limit(0);
  60. include("../../data/dbcache/class.php");
  61. include "../".LoadLang("pub/fun.php");
  62. ClearSearchAll($_GET[start],$_GET[line],$logininid,$loginin);
  63. }
  64. $total=$empire->gettotal("select count(*) as total from {$dbtbpre}enewssearchall");
  65. db_close();
  66. $empire=null;
  67. ?>
  68. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  69. <html>
  70. <head>
  71. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  72. <title>清理搜索多余数据</title>
  73. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  74. </head>
  75. <body>
  76. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  77. <tr>
  78. <td>位置:<a href="ListSearchLoadTb.php<?=$ecms_hashur['whehref']?>">管理全站搜索数据源</a>&nbsp;->&nbsp;清理搜索多余数据</td>
  79. </tr>
  80. </table>
  81. <form name="searchclear" method="get" action="ClearSearchAll.php" onsubmit="return confirm('确认要操作?');">
  82. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  83. <?=$ecms_hashur['form']?>
  84. <tr class="header">
  85. <td height="25" colspan="2">清理搜索多余数据 <input name=enews type=hidden value=ClearSearchAll></td>
  86. </tr>
  87. <tr bgcolor="#FFFFFF">
  88. <td width="19%" height="25">搜索表总信息数:</td>
  89. <td width="81%" height="25"><?=$total?></td>
  90. </tr>
  91. <tr bgcolor="#FFFFFF">
  92. <td height="25">每组整理数:</td>
  93. <td height="25"><input name="line" type="text" id="line" value="500">
  94. </td>
  95. </tr>
  96. <tr bgcolor="#FFFFFF">
  97. <td height="25">&nbsp;</td>
  98. <td height="25"><input type="submit" name="Submit" value="开始清理"> <input type="reset" name="Submit2" value="重置"></td>
  99. </tr>
  100. </table>
  101. </form>
  102. </body>
  103. </html>