ChangeData.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  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. $fcfile="../../data/fc/ListEnews.php";
  22. $class="<script src=../../data/fc/cmsclass.js></script>";
  23. if(!file_exists($fcfile))
  24. {$class=ShowClass_AddClass("",0,0,"|-",0,0);}
  25. //刷新表
  26. $retable="";
  27. $selecttable="";
  28. $cleartable='';
  29. $i=0;
  30. $tsql=$empire->query("select tid,tbname,tname from {$dbtbpre}enewstable where intb=0 order by tid");
  31. while($tr=$empire->fetch($tsql))
  32. {
  33. $i++;
  34. if($i%4==0)
  35. {
  36. $br="<br>";
  37. }
  38. else
  39. {
  40. $br="";
  41. }
  42. $retable.="<input type=checkbox name=tbname[] value='$tr[tbname]' checked>$tr[tname]&nbsp;&nbsp;".$br;
  43. $selecttable.="<option value='".$tr[tbname]."'>".$tr[tname]."</option>";
  44. $cleartable.="<option value='".$tr[tid]."'>".$tr[tname]."</option>";
  45. }
  46. //专题
  47. $ztclass="";
  48. $ztsql=$empire->query("select ztid,ztname from {$dbtbpre}enewszt order by ztid desc");
  49. while($ztr=$empire->fetch($ztsql))
  50. {
  51. $ztclass.="<option value='".$ztr['ztid']."'>".$ztr['ztname']."</option>";
  52. }
  53. //多访问端
  54. $moreportpid=(int)$_GET['moreportpid'];
  55. $mphref='';
  56. $mpform='';
  57. $mpwhhref='';
  58. $mpwhhrefck='';
  59. $mpname='主访问端';
  60. if($moreportpid)
  61. {
  62. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  63. $mpform=Moreport_ReturnUrlCsPid($moreportpid,1,0,'');
  64. $mpwhhref=Moreport_ReturnUrlCsPid($moreportpid,0,1,'');
  65. $mpwhhrefck=Moreport_ReturnUrlCsPid($moreportpid,0,1,$ecms_hashur['whehref']);
  66. //访问端
  67. $mpr=$empire->fetch1("select * from {$dbtbpre}enewsmoreport where pid='$moreportpid'");
  68. $mpname=$mpr['pname'];
  69. }
  70. //选择日期
  71. $todaydate=date("Y-m-d");
  72. $todaytime=time();
  73. $changeday="<select name=selectday onchange=\"document.reform.startday.value=this.value;document.reform.endday.value='".$todaydate."'\">
  74. <option value='".$todaydate."'>--选择--</option>
  75. <option value='".$todaydate."'>今天</option>
  76. <option value='".ToChangeTime($todaytime,7)."'>一周</option>
  77. <option value='".ToChangeTime($todaytime,30)."'>一月</option>
  78. <option value='".ToChangeTime($todaytime,90)."'>三月</option>
  79. <option value='".ToChangeTime($todaytime,180)."'>半年</option>
  80. <option value='".ToChangeTime($todaytime,365)."'>一年</option>
  81. </select>";
  82. ?>
  83. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  84. <html>
  85. <head>
  86. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  87. <title>更新数据中心</title>
  88. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  89. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  90. <script>
  91. function CheckAll(form)
  92. {
  93. for (var i=0;i<form.elements.length;i++)
  94. {
  95. var e = form.elements[i];
  96. if (e.name != 'chkall')
  97. e.checked = form.chkall.checked;
  98. }
  99. }
  100. </script>
  101. </head>
  102. <body>
  103. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  104. <tr>
  105. <td width="14%" height="25">位置:<a href="ChangeData.php<?=$ecms_hashur['whehref']?><?=$mpwhhrefck?>">数据更新中心</a></td>
  106. <td width="45%"><table width="420" border="0" align="center" cellpadding="0" cellspacing="0">
  107. <tr>
  108. <td> <div align="center">[<a href="#ReAllHtml">总体刷新</a>]</div></td>
  109. <td> <div align="center">[<a href="#ReMoreListHtml">多栏目刷新</a>]</div></td>
  110. <td> <div align="center">[<a href="#ReIfInfoHtml">按条件刷新内容页</a>]</div></td>
  111. </tr>
  112. </table></td>
  113. <td width="41%"><div align="right" class="emenubutton">
  114. <input type="button" name="Submit52" value="更新信息页地址" onclick="self.location.href='ReInfoUrl.php<?=$ecms_hashur['whehref']?>';">
  115. &nbsp;&nbsp;
  116. <input type="button" name="Submit52" value="数据整理" onclick="self.location.href='DoUpdateData.php<?=$ecms_hashur['whehref']?>';">
  117. &nbsp;&nbsp;
  118. <input type="button" name="Submit522" value="更新动态页面缓存" onclick="self.location.href='ChangePageCache.php<?=$ecms_hashur['whehref']?>';">
  119. </div></td>
  120. </tr>
  121. <?php
  122. if($ecms_config['sets']['selfmoreportid']<=1&&$public_r['ckhavemoreport'])
  123. {
  124. ?>
  125. <tr>
  126. <td height="25" colspan="3"><table width="100%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
  127. <form name="rechmpform" id="rechmpform" method="GET" action="ChangeData.php">
  128. <?=$ecms_hashur['eform']?>
  129. <tr>
  130. <td width="50%" bgcolor="#FFFFFF">已选访问端:<b><?=$mpname?></b></td>
  131. <td width="50%" bgcolor="#FFFFFF">
  132. <div align="right">选择要刷新页面的访问端:
  133. <?=Moreport_eReturnMoreportSelect($moreportpid,'moreportpid')?>
  134. <input type="submit" name="Submit" value="确定">
  135. </div></td>
  136. </tr>
  137. </form>
  138. </table></td>
  139. </tr>
  140. <?php
  141. }
  142. ?>
  143. </table>
  144. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="6">
  145. <tr id=ReAllHtml>
  146. <td width="69%" valign="top"> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  147. <tr class="header">
  148. <td height="25" colspan="2"> <div align="center">页面刷新管理</div></td>
  149. </tr>
  150. <tr>
  151. <td height="25"><div align="center"><strong>整站主要页面刷新</strong></div></td>
  152. <td height="25"><div align="center"><strong>其他页面刷新</strong></div></td>
  153. </tr>
  154. <tr>
  155. <td width="50%" height="25" bgcolor="#FFFFFF"> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  156. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  157. <td height="48"> <div align="center">
  158. <input type="button" name="Submit2" value="刷新首页" onclick="self.location.href='../ecmschtml.php?enews=ReIndex<?=$ecms_hashur['href']?><?=$mphref?>'" title="生成首页">
  159. </div></td>
  160. </tr>
  161. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  162. <td height="48"> <div align="center">
  163. <input type="button" name="Submit22" value="刷新所有信息栏目页" onclick="window.open('../ecmschtml.php?enews=ReListHtml_all&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>','','');" title="生成所有栏目页面">
  164. </div></td>
  165. </tr>
  166. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  167. <td height="48"> <div align="center">
  168. <table width="100%" border="0" cellspacing="1" cellpadding="0">
  169. <form action="ecmschtml.php" method="post" name="dorehtml" id="dorehtml">
  170. <?=$ecms_hashur['form']?>
  171. <?=$mpform?>
  172. <tr>
  173. <td><div align="center">
  174. <input type="button" name="Submit3" value="刷新所有信息内容页面" onclick="var toredohtml=0;if(document.dorehtml.havehtml.checked==true){toredohtml=1;}window.open('DoRehtml.php?enews=ReNewsHtml&start=0&havehtml='+toredohtml+'&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>','','');" title="生成所有内容页">
  175. </div></td>
  176. </tr>
  177. <tr>
  178. <td height="25" valign="top"> <div align="center">全部刷新
  179. <input name="havehtml" type="checkbox" id="havehtml" value="1" title="把已经生成的内容页一起更新">
  180. </div></td>
  181. </tr>
  182. </form>
  183. </table>
  184. </div></td>
  185. </tr>
  186. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  187. <td height="48"> <div align="center">
  188. <input type="button" name="Submit4" value="刷新所有信息JS调用" onclick="window.open('../ecmschtml.php?enews=ReAllNewsJs&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>','','');" title="生成所有JS调用文件">
  189. </div></td>
  190. </tr>
  191. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  192. <td height="48"><div align="center">
  193. <input type="button" name="Submit422232" value="批量更新动态页面" onclick="self.location.href='../ecmschtml.php?enews=ReDtPage<?=$ecms_hashur['href']?><?=$mphref?>';" title="生成控制面板模板、登陆状态、登陆JS等动态页面">
  194. </div></td>
  195. </tr>
  196. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  197. <td height="48"><div align="center">
  198. <input type="button" name="Submit222" value="刷新所有标题分类页" onclick="window.open('../ecmschtml.php?enews=ReTtListHtml_all&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>','','');" title="生成所有标题分类页面">
  199. </div></td>
  200. </tr>
  201. </table></td>
  202. <td width="50%" valign="top" bgcolor="#FFFFFF"> <table width="100%" border="0" cellpadding="3" cellspacing="1">
  203. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  204. <td height="48"><div align="center">
  205. <input type="button" name="Submit2222" value="刷新所有专题页" onClick="window.open('../ecmschtml.php?enews=ReZtListHtml_all&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>','','');" title="生成所有专题页面">
  206. </div></td>
  207. </tr>
  208. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  209. <td height="48"> <div align="center">
  210. <input type="button" name="Submit422" value="批量刷新碎片文件" onclick="window.open('../ecmschtml.php?enews=ReSpAll&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>','','');" title="生成碎片文件">
  211. </div></td>
  212. </tr>
  213. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  214. <td height="48"> <div align="center">
  215. <input type="button" name="Submit422" value="批量刷新投票JS" onclick="window.open('../tool/ListVote.php?enews=ReVoteJs_all&from=../ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>','','');" title="生成投票插件的JS文件">
  216. </div></td>
  217. </tr>
  218. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  219. <td height="48"> <div align="center">
  220. <input type="button" name="Submit4222" value="批量刷新广告JS" onclick="window.open('../tool/ListAd.php?enews=ReAdJs_all&from=../ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>','','');" title="生成广告插件的JS文件">
  221. </div></td>
  222. </tr>
  223. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  224. <td height="48"> <div align="center">
  225. <table width="100%" border="0" cellspacing="1" cellpadding="0">
  226. <form action="../ecmsmod.php" method="GET" name="dochangemodform" id="dochangemodform">
  227. <?=$ecms_hashur['form']?>
  228. <?=$mpform?>
  229. <input type=hidden name=enews value="ChangeAllModForm">
  230. <tr>
  231. <td><div align="center">
  232. <input type="submit" name="Submit3" value="批量更新模型表单" title="生成发布跟投稿表单(一般是网站搬家时使用)">
  233. </div></td>
  234. </tr>
  235. <tr>
  236. <td height="25"> <div align="center">更新栏目导航
  237. <input name="ChangeClass" type="checkbox" id="ChangeClass" value="1" title="更新投稿时选择的栏目">
  238. </div></td>
  239. </tr>
  240. </form>
  241. </table>
  242. </div></td>
  243. </tr>
  244. <tr onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  245. <td height="48"><div align="center">
  246. <input type="button" name="Submit4222322" value="批量更新反馈表单" onclick="self.location.href='../tool/FeedbackClass.php?enews=ReMoreFeedbackClassFile<?=$ecms_hashur['href']?><?=$mphref?>';" title="生成自定义反馈的表单(一般是网站搬家时使用)">
  247. </div></td>
  248. </tr>
  249. </table></td>
  250. </tr>
  251. </table></td>
  252. <td width="31%" valign="top"> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  253. <tr>
  254. <td height="25" class="header"> <div align="center">更新缓存数据</div></td>
  255. </tr>
  256. <tr>
  257. <td height="28" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">
  258. <div align="center"><a href="../enews.php?enews=ChangeEnewsData<?=$ecms_hashur['href']?><?=$mphref?>" title="更新系统的缓存(一般是网站搬家时使用)">更新数据库缓存</a></div></td>
  259. </tr>
  260. <tr>
  261. <td height="28" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">
  262. <div align="center"><a href="../ecmschtml.php?enews=ReClassPath<?=$ecms_hashur['href']?><?=$mphref?>" title="重新建立栏目目录(一般是网站搬家时使用)">恢复栏目目录</a></div></td>
  263. </tr>
  264. <tr>
  265. <td height="28" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">
  266. <div align="center"><a href="../ecmsclass.php?enews=DelFcListClass<?=$ecms_hashur['href']?><?=$mphref?>" title="重新更新“信息管理”菜单下的栏目列表及“栏目管理”菜单下的管理栏目页面。(一般是网站搬家时使用)">删除栏目缓存文件</a></div></td>
  267. </tr>
  268. <tr>
  269. <td height="28" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">
  270. <div align="center"><a href="../ecmsclass.php?enews=ChangeSonclass<?=$ecms_hashur['href']?><?=$mphref?>" title="一般应用于修改栏目所属父栏目后使用此功能。">更新栏目关系</a></div></td>
  271. </tr>
  272. <tr>
  273. <td height="28" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"><div align="center"><a href="../ecmschtml.php?enews=UpdateClassInfosAll&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>" title="重新统计栏目下信息数量,一般应用于批量删除信息后使用此功能。" target="_blank">更新栏目信息数</a></div></td>
  274. </tr>
  275. <tr>
  276. <td height="28" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">
  277. <div align="center"><a href="../ecmscom.php?enews=ClearTmpFileData<?=$ecms_hashur['href']?><?=$mphref?>" onclick="return confirm('清除前请确认用户没有正在采集、批量刷新页面与远程发布,确认?');" title="清除临时和缓存文件,可清空产生的临时文件,还有就是更新动态页面模板时使用,用于实时更换模板">清除临时文件和数据</a></div></td>
  278. </tr>
  279. </table>
  280. <br>
  281. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  282. <tr>
  283. <td height="25" class="header"> <div align="center">自定义页面刷新</div></td>
  284. </tr>
  285. <tr>
  286. <td height="30" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">
  287. <div align="center"><a href="../ecmschtml.php?enews=ReUserpageAll&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>" target="_blank" title="生成所有自定义页面">刷新所有自定义页面</a></div></td>
  288. </tr>
  289. <tr>
  290. <td height="30" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">
  291. <div align="center"><a href="../ecmschtml.php?enews=ReUserlistAll&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>" target="_blank" title="生成所有自定义列表">刷新所有自定义列表</a></div></td>
  292. </tr>
  293. <tr>
  294. <td height="30" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#C3EFFF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">
  295. <div align="center"><a href="../ecmschtml.php?enews=ReUserjsAll&from=ReHtml/ChangeData.php<?=urlencode($ecms_hashur['whehref'].$mpwhhrefck)?><?=$ecms_hashur['href']?><?=$mphref?>" target="_blank" title="生成所有自定义JS">刷新所有自定义JS</a></div></td>
  296. </tr>
  297. </table> </td>
  298. </tr>
  299. <tr id=ReMoreListHtml>
  300. <td width="69%" valign="top"> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  301. <form name="form2" method="post" action="../ecmschtml.php">
  302. <?=$ecms_hashur['form']?>
  303. <?=$mpform?>
  304. <tr class="header">
  305. <td height="25"> <div align="center"><strong>刷新多栏目页面 </strong></div></td>
  306. </tr>
  307. <tr>
  308. <td height="25" bgcolor="#FFFFFF"> <div align="center">
  309. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  310. <tr>
  311. <td><div align="center">
  312. <select name="classid[]" size="12" multiple id="classid[]" style="width:310">
  313. <?=$class?>
  314. </select>
  315. </div></td>
  316. </tr>
  317. <tr>
  318. <td><div align="center">
  319. <input type="submit" name="Submit8" value="开始刷新">
  320. <strong>
  321. <input name="enews" type="hidden" id="enews3" value="GoReListHtmlMore">
  322. <input name="gore" type="hidden" id="enews4" value="0">
  323. <input name="from" type="hidden" id="gore" value="ReHtml/ChangeData.php<?=$ecms_hashur['whehref']?><?=$mpwhhrefck?>">
  324. </strong></div></td>
  325. </tr>
  326. <tr>
  327. <td><div align="center"><font color="#666666">多个用ctrl/shift选择</font></div></td>
  328. </tr>
  329. </table>
  330. </div></td>
  331. </tr>
  332. </form>
  333. </table></td>
  334. <td><table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  335. <form name="form2" method="post" action="../ecmschtml.php">
  336. <?=$ecms_hashur['form']?>
  337. <?=$mpform?>
  338. <tr class="header">
  339. <td height="25"> <div align="center"><strong>刷新多专题页面 </strong></div></td>
  340. </tr>
  341. <tr>
  342. <td height="25" bgcolor="#FFFFFF"> <div align="center">
  343. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  344. <tr>
  345. <td><div align="center">
  346. <select name="classid[]" size="12" multiple id="select2" style="width:250">
  347. <?=$ztclass?>
  348. </select>
  349. </div></td>
  350. </tr>
  351. <tr>
  352. <td><div align="center">
  353. <input name="ecms" type="checkbox" id="ecms" value="1" checked>
  354. 含子分类
  355. <input type="submit" name="Submit82" value="开始刷新">
  356. <strong>
  357. <input name="enews" type="hidden" id="enews5" value="GoReListHtmlMore">
  358. <input name="gore" type="hidden" id="gore" value="1">
  359. <input name="from" type="hidden" id="from" value="ReHtml/ChangeData.php<?=$ecms_hashur['whehref']?><?=$mpwhhrefck?>">
  360. </strong></div></td>
  361. </tr>
  362. <tr>
  363. <td><div align="center"><font color="#666666">多个用ctrl/shift选择</font></div></td>
  364. </tr>
  365. </table>
  366. </div></td>
  367. </tr>
  368. </form>
  369. </table></td>
  370. </tr>
  371. </table>
  372. <form action="DoRehtml.php" method="get" name="reform" target="_blank" onsubmit="return confirm('确认要刷新?');">
  373. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id=ReIfInfoHtml>
  374. <?=$ecms_hashur['form']?>
  375. <?=$mpform?>
  376. <input name="from" type="hidden" id="from" value="ReHtml/ChangeData.php<?=$ecms_hashur['whehref']?><?=$mpwhhrefck?>">
  377. <tr class="header">
  378. <td height="25"> <div align="center">按条件刷新信息内容页面</div></td>
  379. </tr>
  380. <tr>
  381. <td height="25" bgcolor="#FFFFFF"> <div align="center">
  382. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  383. <tr>
  384. <td height="25">刷新数据表:
  385. <input name=chkall type=checkbox onClick=CheckAll(this.form) value=on checked>
  386. <font color="#666666">全选</font></td>
  387. <td height="25">
  388. <?=$retable?>
  389. </td>
  390. </tr>
  391. <tr>
  392. <td height="25">刷新栏目</td>
  393. <td height="25"><select name="classid" id="classid">
  394. <option value="0">所有栏目</option>
  395. <?=$class?>
  396. </select>
  397. <font color="#666666"> (如选择父栏目,将刷新所有子栏目)</font></td>
  398. </tr>
  399. <tr>
  400. <td width="23%" height="25"> <input name="retype" type="radio" value="0" checked>
  401. 按时间刷新:</td>
  402. <td width="77%" height="25">从
  403. <input name="startday" type="text" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  404. <input name="endday" type="text" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  405. 之间的数据
  406. <?=$changeday?>
  407. <font color="#666666"> (不填将刷新所有页面)</font></td>
  408. </tr>
  409. <tr>
  410. <td height="25"> <input name="retype" type="radio" value="1">
  411. 按ID刷新:</td>
  412. <td height="25">从
  413. <input name="startid" type="text" id="startid" value="0" size="6">
  414. <input name="endid" type="text" id="endid" value="0" size="6">
  415. 之间的数据 <font color="#666666">(两个值为0将刷新所有页面)</font></td>
  416. </tr>
  417. <tr>
  418. <td height="25">全部刷新:</td>
  419. <td height="25"><input name="havehtml" type="checkbox" id="havehtml" value="1">
  420. 是<font color="#666666"> (不选择将不刷新已生成过的信息)</font></td>
  421. </tr>
  422. <tr>
  423. <td height="25">&nbsp;</td>
  424. <td height="25"><input type="submit" name="Submit6" value="开始刷新">
  425. <input type="reset" name="Submit7" value="重置"> <input name="enews" type="hidden" id="enews" value="ReNewsHtml">
  426. </td>
  427. </tr>
  428. </table>
  429. </div></td>
  430. </tr>
  431. </table>
  432. </form>
  433. <p>&nbsp;</p>
  434. <p>&nbsp;</p>
  435. <p>&nbsp;</p>
  436. <p><br>
  437. </p>
  438. </body>
  439. </html>
  440. <?
  441. db_close();
  442. $empire=null;
  443. ?>