ReData.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("class/functions.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  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,"dbdata");
  20. $mypath=ehtmlspecialchars($_GET['mypath']);
  21. $mydbname=ehtmlspecialchars($_GET['mydbname']);
  22. $selectdbname=$ecms_config['db']['dbname'];
  23. if($mydbname)
  24. {
  25. $selectdbname=$mydbname;
  26. }
  27. $bakpath=$public_r['bakdbpath'];
  28. $db='';
  29. if($public_r['ebakcanlistdb'])
  30. {
  31. $db.="<option value='".$selectdbname."' selected>".$selectdbname."</option>";
  32. }
  33. else
  34. {
  35. $sql=$empire->query("SHOW DATABASES");
  36. while($r=$empire->fetch($sql))
  37. {
  38. if($r[0]==$selectdbname)
  39. {$select=" selected";}
  40. else
  41. {$select="";}
  42. $db.="<option value='".$r[0]."'".$select.">".$r[0]."</option>";
  43. }
  44. }
  45. db_close();
  46. $empire=null;
  47. ?>
  48. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  49. <html>
  50. <head>
  51. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  52. <title>恢复数据</title>
  53. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  54. </head>
  55. <body>
  56. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  57. <tr>
  58. <td>位置:<a href="ReData.php<?=$ecms_hashur['whehref']?>">恢复数据</a></td>
  59. </tr>
  60. </table>
  61. <form action="phome.php" method="post" name="ebakredata" target="_blank" onsubmit="return confirm('确认要恢复?');" autocomplete="off">
  62. <table width="70%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  63. <?=$ecms_hashur['form']?>
  64. <tr class="header">
  65. <td width="34%" height="25">恢复数据
  66. <input name="phome" type="hidden" id="phome" value="ReData"></td>
  67. <td width="66%" height="25">&nbsp;</td>
  68. </tr>
  69. <tr bgcolor="#FFFFFF">
  70. <td height="25">恢复数据源目录:</td>
  71. <td height="25">
  72. <?=$bakpath?>
  73. /
  74. <input name="mypath" type="text" id="mypath" value="<?=$mypath?>">
  75. <input type="button" name="Submit2" value="选择目录" onclick="javascript:window.open('ChangePath.php?change=1<?=$ecms_hashur['ehref']?>','','width=600,height=500,scrollbars=yes');"></td>
  76. </tr>
  77. <tr bgcolor="#FFFFFF">
  78. <td height="25" valign="top">要导入的数据库:</td>
  79. <td height="25"> <select name="add[mydbname]" size="23" id="add[mydbname]" style="width=200">
  80. <?=$db?>
  81. </select></td>
  82. </tr>
  83. <tr bgcolor="#FFFFFF">
  84. <td height="25">恢复选项:</td>
  85. <td height="25">每组恢复间隔:
  86. <input name="add[waitbaktime]" type="text" id="add[waitbaktime]" value="0" size="2">
  87. 秒</td>
  88. </tr>
  89. <tr bgcolor="#FFFFFF">
  90. <td height="25" colspan="2"> <div align="left">
  91. <input type="submit" name="Submit" value="开始恢复">
  92. </div></td>
  93. </tr>
  94. </table>
  95. </form>
  96. </body>
  97. </html>