国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.8KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>文件校验</title>
  6. <link href='css/base.css' rel='stylesheet' type='text/css'>
  7. </head>
  8. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  9. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  10. <tr>
  11. <td height="19" background="images/tbg.gif">
  12. <table width="96%" border="0" cellspacing="1" cellpadding="1">
  13. <tr>
  14. <td width="24%">
  15. <strong><a href='sys_verifies.php'><b>文件校验</b></a> &gt;&gt; 文件效验管理</strong>
  16. </td>
  17. <td width="76%" align="right">
  18. </td>
  19. </tr>
  20. </table>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td height="200" bgcolor="#FFFFFF" valign="top">
  25. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  26. <form action="sys_verifies.php?action=modify" method="post">
  27. <tr>
  28. <td colspan="4" class='bline2' style="color:red"> &nbsp;说明:这里是系统文件列表,如果本地对某些文件做过修改,但又不希望同官方服务器上面的镜像版本(发布版本)对应文件进行同步,可将文件校验方式修改为&ldquo;本地(local)&rdquo;,以确保不会重新下载文件修复。</td>
  29. </tr>
  30. <tr>
  31. <td class='bline2'> 修改? </td>
  32. <td class='bline2'> 文件名(用 Ctrl+F 搜索) </td>
  33. <td class='bline2'> 文件HASH </td>
  34. <td class='bline2'> 校验方式 </td>
  35. </tr>
  36. <?php
  37. foreach ($filelist as $key => $file)
  38. {
  39. ?>
  40. <tr>
  41. <td class='bline'>
  42. <input type="checkbox" name="modifys[]" value="<?php echo $file['filename'];?>" />
  43. </td>
  44. <td class='bline'>
  45. <?php echo $file['filename'];?>
  46. </td>
  47. <td class='bline'>
  48. <?php echo $file['cthash'];?>
  49. </td>
  50. <td class='bline'>
  51. <?php echo $file['method'];?>
  52. </td>
  53. </tr>
  54. <?php
  55. }
  56. ?>
  57. <tr>
  58. <td colspan="20" height='28'>
  59. <label><input type="radio" name="method" value="offical" />官方(official)</label>
  60. <label><input type="radio" name="method" value="local" checked='1' />本地(local)</label>
  61. </td>
  62. </tr>
  63. <tr>
  64. <td colspan="20" height='36'>
  65. <input type="submit" name="submit" value="修改要文件的校验方式" class='np coolbg' />
  66. </td>
  67. </tr>
  68. </form>
  69. </table>
  70. </td>
  71. </tr>
  72. </table>
  73. </body>
  74. </html>