ChangePageCache.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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,"changedata");
  20. //批量更新动态页缓存
  21. function ChangePageCache($add,$userid,$username){
  22. global $empire,$public_r,$class_r,$fun_r,$dbtbpre;
  23. //验证权限
  24. //CheckLevel($userid,$username,$classid,"changedata");
  25. if(empty($public_r['ctimeopen']))
  26. {
  27. printerror("ErrorUrl","history.go(-1)");
  28. }
  29. $dopage=(int)$add['dopage'];
  30. if(!$dopage)
  31. {
  32. printerror("ErrorUrl","history.go(-1)");
  33. }
  34. $chall=(int)$add['chall'];
  35. $tid=(int)$add['tid'];
  36. $classid=$add['classid'];
  37. $ttid=$add['ttid'];
  38. $from=$add['from'];
  39. $time=time();
  40. if($dopage==2)//栏目
  41. {
  42. if($chall)
  43. {
  44. $cids=eArrayReturnInids($classid);
  45. if($cids)
  46. {
  47. $empire->query("update {$dbtbpre}enewsclass set fclast='$time' where classid in (".$cids.")");
  48. }
  49. }
  50. else
  51. {
  52. $empire->query("update {$dbtbpre}enewsclass set fclast='$time'");
  53. }
  54. }
  55. elseif($dopage==3)//内容
  56. {
  57. if(!$tid)
  58. {
  59. printerror("ErrorUrl","history.go(-1)");
  60. }
  61. $tbr=$empire->fetch1("select tid,tbname from {$dbtbpre}enewstable where tid='$tid' limit 1");
  62. if(!$tbr['tbname'])
  63. {
  64. printerror("ErrorUrl","history.go(-1)");
  65. }
  66. $empire->query("update {$dbtbpre}ecms_".$tbr['tbname']." set lastdotime='$time'");
  67. }
  68. elseif($dopage==4)//标题分类
  69. {
  70. if($chall)
  71. {
  72. $ttids=eArrayReturnInids($ttid);
  73. if($ttids)
  74. {
  75. $empire->query("update {$dbtbpre}enewsinfotype set fclast='$time' where typeid in (".$ttids.")");
  76. }
  77. }
  78. else
  79. {
  80. $empire->query("update {$dbtbpre}enewsinfotype set fclast='$time'");
  81. }
  82. }
  83. elseif($dopage==5)//TAGS
  84. {
  85. $empire->query("update {$dbtbpre}enewstags set fclast='$time'");
  86. }
  87. else//首页
  88. {
  89. $empire->query("update {$dbtbpre}enewspublic_fc set fclastindex='$time' limit 1");
  90. }
  91. insert_dolog("");//操作日志
  92. printerror("ChangePageCacheSuccess",$from);
  93. }
  94. $enews=$_POST['enews'];
  95. if(empty($enews))
  96. {$enews=$_GET['enews'];}
  97. if($enews)
  98. {
  99. hCheckEcmsRHash();
  100. @set_time_limit(0);
  101. include('../../data/dbcache/class.php');
  102. }
  103. if($enews=="ChangePageCache")//批量更新缓存
  104. {
  105. ChangePageCache($_POST,$logininid,$loginin);
  106. }
  107. $dopage=(int)$_GET['dopage'];
  108. //栏目
  109. $fcfile="../../data/fc/ListEnews.php";
  110. $class="<script src=../../data/fc/cmsclass.js></script>";
  111. if(!file_exists($fcfile))
  112. {$class=ShowClass_AddClass("",0,0,"|-",0,0);}
  113. //刷新表
  114. $retable="";
  115. $selecttable="";
  116. $i=0;
  117. $tsql=$empire->query("select tid,tbname,tname from {$dbtbpre}enewstable where intb=0 order by tid");
  118. while($tr=$empire->fetch($tsql))
  119. {
  120. $i++;
  121. if($i%4==0)
  122. {
  123. $br="<br>";
  124. }
  125. else
  126. {
  127. $br="";
  128. }
  129. $retable.="<input type=checkbox name=tbname[] value='$tr[tbname]' checked>$tr[tname]&nbsp;&nbsp;".$br;
  130. $selecttable.="<option value='".$tr[tid]."'>".$tr[tname]."</option>";
  131. }
  132. //标题分类
  133. $tts='';
  134. $infotypesql=$empire->query("select typeid,tname from {$dbtbpre}enewsinfotype order by typeid");
  135. while($infotyper=$empire->fetch($infotypesql))
  136. {
  137. $tts.="<option value='$infotyper[typeid]'".$selected.">$infotyper[tname]</option>";
  138. }
  139. ?>
  140. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  141. <html>
  142. <head>
  143. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  144. <title>更新动态页面缓存</title>
  145. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  146. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  147. <script>
  148. function CheckAll(form)
  149. {
  150. for (var i=0;i<form.elements.length;i++)
  151. {
  152. var e = form.elements[i];
  153. if (e.name != 'chkall')
  154. e.checked = form.chkall.checked;
  155. }
  156. }
  157. </script>
  158. </head>
  159. <body>
  160. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  161. <tr>
  162. <td width="39%" height="25">位置:<a href="ChangePageCache.php<?=$ecms_hashur['whehref']?>">批量更新动态页面缓存</a></td>
  163. <td width="61%"><div align="right" class="emenubutton">
  164. <input type="button" name="Submit52" value="数据更新中心" onclick="self.location.href='ChangeData.php<?=$ecms_hashur['whehref']?>';">
  165. &nbsp;&nbsp;
  166. <input type="button" name="Submit522" value="更新信息页地址" onclick="self.location.href='ReInfoUrl.php<?=$ecms_hashur['whehref']?>';">
  167. &nbsp;&nbsp;
  168. <input type="button" name="Submit52" value="数据整理" onclick="self.location.href='DoUpdateData.php<?=$ecms_hashur['whehref']?>';">
  169. </div></td>
  170. </tr>
  171. </table>
  172. <form action="ChangePageCache.php" method="post" name="form1" target="_blank" onsubmit="return confirm('确认要更新?');">
  173. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id="ChangePageCache">
  174. <?=$ecms_hashur['form']?>
  175. <input name="from" type="hidden" id="from" value="ChangePageCache.php<?=$ecms_hashur['whehref']?>">
  176. <tr class="header">
  177. <td height="25"> <div align="center">批量更新动态页面缓存</div></td>
  178. </tr>
  179. <tr>
  180. <td height="25" bgcolor="#FFFFFF"> <div align="center">
  181. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  182. <tr>
  183. <td width="23%" height="25">更新缓存的页面:</td>
  184. <td width="77%" height="25"><select name="dopage" id="dopage" onchange="self.location.href='ChangePageCache.php?<?=$ecms_hashur['ehref']?>&dopage='+this.options[this.selectedIndex].value;">
  185. <option value="1"<?=$dopage==1?' selected':''?>>首页</option>
  186. <option value="2"<?=$dopage==2?' selected':''?>>栏目页</option>
  187. <option value="3"<?=$dopage==3?' selected':''?>>内容页</option>
  188. <option value="4"<?=$dopage==4?' selected':''?>>标题分类页</option>
  189. <option value="5"<?=$dopage==5?' selected':''?>>TAGS页</option>
  190. </select> </td>
  191. </tr>
  192. <?php
  193. if($dopage==2||$dopage==4)
  194. {
  195. ?>
  196. <tr>
  197. <td height="25">选择更新缓存范围:</td>
  198. <td height="25"><input name="chall" type="radio" value="0" checked>更新所有缓存
  199. <input type="radio" name="chall" value="1">按下面选定更新缓存</td>
  200. </tr>
  201. <?php
  202. }
  203. ?>
  204. <?php
  205. if($dopage==3)
  206. {
  207. ?>
  208. <tr>
  209. <td height="25">数据表:</td>
  210. <td height="25"> <select name="tid" id="tid">
  211. <option value=''>------ 选择数据表 ------</option>
  212. <?=$selecttable?>
  213. </select></td>
  214. </tr>
  215. <?php
  216. }
  217. if($dopage==2)
  218. {
  219. ?>
  220. <tr>
  221. <td height="25" valign="top">栏目:<br>
  222. <br>
  223. <br>
  224. <br>
  225. <br>
  226. <font color="#999999">(多个用CTRL/SHIFT)</font></td>
  227. <td height="25"><select name="classid[]" size="18" multiple id="classid[]" style="width:180">
  228. <?=$class?>
  229. </select></td>
  230. </tr>
  231. <?php
  232. }
  233. if($dopage==4)
  234. {
  235. ?>
  236. <tr>
  237. <td height="25" valign="top">标题分类:<br>
  238. <br>
  239. <br>
  240. <br>
  241. <br>
  242. <br>
  243. <font color="#999999">(多个用CTRL/SHIFT)</font></td>
  244. <td height="25"><select name="ttid[]" size="18" multiple id="ttid[]" style="width:180">
  245. <?=$tts?>
  246. </select> </td>
  247. </tr>
  248. <?php
  249. }
  250. ?>
  251. <tr>
  252. <td height="25">&nbsp;</td>
  253. <td height="25">
  254. <?php
  255. if(empty($public_r['ctimeopen']))
  256. {
  257. ?>
  258. 动态页面缓存未启用,无需使用此更新!
  259. <?php
  260. }
  261. else
  262. {
  263. ?>
  264. <input type="submit" name="Submit62" value="开始更新缓存">
  265. &nbsp;
  266. <input type="reset" name="Submit72" value="重置">
  267. <input name="enews" type="hidden" value="ChangePageCache">
  268. <?php
  269. }
  270. ?>
  271. </td>
  272. </tr>
  273. </table>
  274. </div></td>
  275. </tr>
  276. </table>
  277. </form>
  278. </body>
  279. </html>
  280. <?
  281. db_close();
  282. $empire=null;
  283. ?>