backupsql.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <?php/*
  2. //文件打包
  3. $date = date("m-d-Y");
  4. // repeat this command for multiple backups, changing the path - e.g. you can have a backup for email, another for files, etc.
  5. shell_exec("tar cvfz /path/to/backup/location/here/file_backup_$date.tar.gz /path/to/files/to/backup/here/");
  6. */
  7. ?>
  8. <?php
  9. // connect to DB
  10. $dbhost = 'localhost';
  11. // edit these 4 lines
  12. $dbname = 'db_name_here';
  13. $dbuser = 'db_user_here';
  14. $dbpw = 'db_pass_here';
  15. $backupDir = '/full/path/to/backup/dir/here/'; // full path, must be 777 and passwd-protected
  16. $dbh = mysql_connect($dbhost, $dbuser, $dbpw) or
  17. die ('I cannot connect to the database because: ' . mysql_error());
  18. mysql_select_db($dbname, $dbh);
  19. set_time_limit(0);
  20. $backup_file = 'db_' . date('Ymd') . '.sql';
  21. $fp = fopen($backupDir . $backup_file, 'w');
  22. $schema = '# Database Backup' .
  23. '#' . "\n" .
  24. '# Backup Date: ' . date('Y-m-d H:i:s') . "\n\n";
  25. fputs($fp, $schema);
  26. $tables_query = mysql_query('show tables');
  27. while ($tables = mysql_fetch_array($tables_query)) {
  28. list(,$table) = each($tables);
  29. $schema = 'drop table if exists `' . $table . '`;' . "\n" .
  30. 'create table `' . $table . '` (' . "\n";
  31. $table_list = array();
  32. $fields_query = mysql_query("show fields from `" . $table."`");
  33. while ($fields = mysql_fetch_array($fields_query)) {
  34. $table_list[] = "`".$fields['Field']."`"; // bug fix for fields with reserved names thanks to J. Frugier joris.frugier@gmail.com for pointing this out
  35. //$table_list[] = $fields['Field'];
  36. $schema .= ' `' . $fields['Field'] . '` ' . $fields['Type'];
  37. if (strlen($fields['Default']) > 0) $schema .= ' default \'' . $fields['Default'] . '\'';
  38. if ($fields['Null'] != 'YES') $schema .= ' not null';
  39. if (isset($fields['Extra'])) $schema .= ' ' . $fields['Extra'];
  40. $schema .= ',' . "\n";
  41. }
  42. $schema = ereg_replace(",\n$", '', $schema);
  43. // add the keys
  44. $index = array();
  45. $keys_query = mysql_query("show keys from `" . $table."`");
  46. while ($keys = mysql_fetch_array($keys_query)) {
  47. $kname = $keys['Key_name'];
  48. if (!isset($index[$kname])) {
  49. $index[$kname] = array('unique' => !$keys['Non_unique'],
  50. 'fulltext' => ($keys['Index_type'] == 'FULLTEXT' ? '1' : '0'),
  51. 'columns' => array());
  52. }
  53. $index[$kname]['columns'][] = "`".$keys['Column_name']."`";
  54. }
  55. while (list($kname, $info) = each($index)) {
  56. $schema .= ',' . "\n";
  57. $columns = implode($info['columns'], ', ');
  58. if ($kname == 'PRIMARY') {
  59. $schema .= ' PRIMARY KEY (' . $columns . ')';
  60. } elseif ( $info['fulltext'] == '1' ) {
  61. $schema .= ' FULLTEXT `' . $kname . '` (' . $columns . ')';
  62. } elseif ($info['unique']) {
  63. $schema .= ' UNIQUE `' . $kname . '` (' . $columns . ')';
  64. } else {
  65. $schema .= ' KEY ' . "`".$kname."`" . ' (' . $columns . ')';
  66. }
  67. }
  68. $schema .= "\n" . ');' . "\n\n";
  69. fputs($fp, $schema);
  70. // dump the data
  71. $rows_query = mysql_query("select " . implode(',', $table_list) . " from `" . $table."`");
  72. while ($rows = mysql_fetch_array($rows_query)) {
  73. $schema = 'insert into `' . $table . '` (' . implode(', ', $table_list) . ') values (';
  74. reset($table_list);
  75. while (list(,$i) = each($table_list)) {
  76. $i = str_replace('`', '',$i);
  77. if (!isset($rows[$i])) {
  78. $schema .= 'NULL, ';
  79. } elseif ( trim($rows[$i]) != '' ) {
  80. $row = addslashes($rows[$i]);
  81. $row = ereg_replace("\n#", "\n".'\#', $row);
  82. $schema .= '\'' . $row . '\', ';
  83. } else {
  84. $schema .= '\'\', ';
  85. }
  86. }
  87. $schema = ereg_replace(', $', '', $schema) . ');' . "\n";
  88. fputs($fp, $schema);
  89. }
  90. }
  91. fclose($fp);
  92. ?>
  93. <?php
  94. $sites = array();
  95. $date = date('Ymd');
  96. $dateDash = date('m-d-Y');
  97. // define an entry an the $site array for each site you want to backup定义要备份的每个站点的入口出了$网站阵列
  98. $sites[0] = array('host'=>'ftp.mysite.com', 'user'=>'ftp_username', 'password'=>'ftp_password',
  99. 'dbBackupLocation'=>'server_folder_to_backup_db_to_here', 'dbBackupFilename'=>"db_$date".'.sql',
  100. 'emailBackupLocation'=>'server_folder_to_backup_email_here', 'emailBackupFilename'=>'backup_mail_'.$dateDash.'.tar.gz',
  101. 'filesBackupLocation1'=>'server_folder_to_backup_files_here', 'filesBackupFilename1'=>'backup_files_'.$dateDash.'.tar.gz',
  102. 'filesBackupLocation2'=>'server_folder_to_backup_2ndSet_files_here', 'filesBackupFilename2'=>'backup_files2_'.$dateDash.'.tar.gz');
  103. function getBackup($conn, $location, $file, $mode, $local_file, $user) {
  104. ftp_chdir($conn, $location);
  105. $local_file = $user.'_'.$file;
  106. if (ftp_get($conn, $local_file, $file, $mode)) { // FTP_ASCII for ASCII text, FTP_BINARY FOR IMAGES AND VIDEO, ETC.
  107. echo "Successfully written to $local_file\n";
  108. // delete file on server
  109. ftp_delete($conn, $file);
  110. }
  111. else {
  112. echo "There was a problem downloading the file\n";
  113. }
  114. }
  115. foreach ($sites as $site) {
  116. // connect to site using FTP
  117. $conn = ftp_connect($site['host']);
  118. if (!$conn) {
  119. echo "Error: Could not connect to FTP server<br>";
  120. exit;
  121. }
  122. echo "Connected to ".$site['host']."<br>";
  123. // log into host
  124. $result = ftp_login($conn, $site['user'], $site['password']);
  125. if (!$result) {
  126. echo "Error: Could not log on as ".$site['user']."<br>";
  127. ftp_quit($conn);
  128. exit;
  129. }
  130. echo "Logged in as ".$site['user']."<br>";
  131. // download and save DB backup, email backup and file backup(s)
  132. if ( trim($site['dbBackupFilename']) != '' ) {
  133. $local_file = $site['user'].'_'.$site['dbBackupFilename'];
  134. getBackup($conn, $site['dbBackupLocation'], $site['dbBackupFilename'], FTP_ASCII, $local_file, $site['user']);
  135. }
  136. if ( trim($site['emailBackupFilename']) != '' ) {
  137. $local_file = $site['user'].'_'.$site['emailBackupFilename'];
  138. getBackup($conn, $site['emailBackupLocation'], $site['emailBackupFilename'], FTP_BINARY, $local_file, $site['user']);
  139. }
  140. if ( trim($site['filesBackupFilename1']) != '' ) {
  141. $local_file = $site['user'].'_'.$site['filesBackupFilename1'];
  142. getBackup($conn, $site['filesBackupLocation1'], $site['filesBackupFilename1'], FTP_BINARY, $local_file, $site['user']);
  143. }
  144. if ( trim($site['filesBackupFilename2']) != '' ) {
  145. $local_file = $site['user'].'_'.$site['filesBackupFilename2'];
  146. getBackup($conn, $site['filesBackupLocation2'], $site['filesBackupFilename2'], FTP_BINARY, $local_file, $site['user']);
  147. }
  148. // close FTP connection
  149. ftp_close($conn);
  150. } // end foreach
  151. ?>