UpdraftPlus WordPress Backup Plugin - Version 0.8.31

Version Description

  • 09/08/2012 =
  • Fixed error deleting old S3 backups. If your expired S3 backups were not deleted, they should be in future - but you will need to delete manually those that expired before you installed this update.
  • Fixed minor bug closing log file
  • Marked as working with WordPress 3.4.2
Download this release

Release Info

Developer DavidAnderson
Plugin Icon 128x128 UpdraftPlus WordPress Backup Plugin
Version 0.8.31
Comparing to
See all releases

Code changes from version 0.8.30 to 0.8.31

Files changed (2) hide show
  1. readme.txt +7 -2
  2. updraftplus.php +5 -5
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: David Anderson
3
  Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, google drive, google, gdrive, ftp, cloud, updraft, back up
4
  Requires at least: 3.2
5
  Tested up to: 3.4.2
6
- Stable tag: 0.8.30
7
  Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv2 or later
9
 
@@ -12,7 +12,7 @@ License: GPLv2 or later
12
  UpdraftPlus simplifies backups (and restoration). Backup into the cloud (S3, Google Drive, FTP, and email) and restore with a single click. Backups of files and database can have separate schedules.
13
 
14
  == Upgrade Notice ==
15
- Minor error closing log file fixed
16
 
17
  == Installation ==
18
 
@@ -47,6 +47,11 @@ Contact me! This is a complex plugin and the only way I can ensure it's robust i
47
 
48
  == Changelog ==
49
 
 
 
 
 
 
50
  = 0.8.29 - 06/29/2012 =
51
  * Marking as tested up to WordPress 3.4.1
52
 
3
  Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, google drive, google, gdrive, ftp, cloud, updraft, back up
4
  Requires at least: 3.2
5
  Tested up to: 3.4.2
6
+ Stable tag: 0.8.31
7
  Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv2 or later
9
 
12
  UpdraftPlus simplifies backups (and restoration). Backup into the cloud (S3, Google Drive, FTP, and email) and restore with a single click. Backups of files and database can have separate schedules.
13
 
14
  == Upgrade Notice ==
15
+ Fix error when deleting from S3 backups
16
 
17
  == Installation ==
18
 
47
 
48
  == Changelog ==
49
 
50
+ = 0.8.31 - 09/08/2012 =
51
+ * Fixed error deleting old S3 backups. If your expired S3 backups were not deleted, they should be in future - but you will need to delete manually those that expired before you installed this update.
52
+ * Fixed minor bug closing log file
53
+ * Marked as working with WordPress 3.4.2
54
+
55
  = 0.8.29 - 06/29/2012 =
56
  * Marking as tested up to WordPress 3.4.1
57
 
updraftplus.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
4
  Plugin URI: http://wordpress.org/extend/plugins/updraftplus
5
  Description: Uploads, themes, plugins, and your DB can be automatically backed up to Amazon S3, Google Drive, FTP, or emailed. Files and DB can be on separate schedules.
6
  Author: David Anderson.
7
- Version: 0.8.30
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  Author URI: http://wordshell.net
10
  */
@@ -54,7 +54,7 @@ if(!$updraft->memory_check(192)) {
54
 
55
  class UpdraftPlus {
56
 
57
- var $version = '0.8.30';
58
 
59
  var $dbhandle;
60
  var $errors = array();
@@ -652,7 +652,7 @@ class UpdraftPlus {
652
  @unlink($fullpath); //delete it if it's locally available
653
  if ($updraft_service == "s3") {
654
  $this->log("$backup_datestamp: Delete remote: s3://$remote_path/$file");
655
- if (!$remote_object->deleteObject($bucket_name, $file)) {
656
  $this->error("S3 Error: Failed to delete object $file. Error was ".$php_errormsg);
657
  }
658
  } elseif ($updraft_service == "ftp") {
@@ -669,7 +669,7 @@ class UpdraftPlus {
669
  @unlink($fullpath); //delete it if it's locally available
670
  if ($updraft_service == "s3") {
671
  $this->log("$backup_datestamp: Delete remote: s3://$remote_path/$file2");
672
- if (!$remote_object->deleteObject($bucket_name, $file2)) {
673
  $this->error("S3 Error: Failed to delete object $file2. Error was ".$php_errormsg);
674
  }
675
  } elseif ($updraft_service == "ftp") {
@@ -687,7 +687,7 @@ class UpdraftPlus {
687
  @unlink($fullpath); //delete it if it's locally available
688
  if ($updraft_service == "s3") {
689
  $this->log("$backup_datestamp: Delete remote: s3://$remote_path/$file3");
690
- if (!$remote_object->deleteObject($bucket_name, $file3)) {
691
  $this->error("S3 Error: Failed to delete object $file3. Error was ".$php_errormsg);
692
  }
693
  } elseif ($updraft_service == "ftp") {
4
  Plugin URI: http://wordpress.org/extend/plugins/updraftplus
5
  Description: Uploads, themes, plugins, and your DB can be automatically backed up to Amazon S3, Google Drive, FTP, or emailed. Files and DB can be on separate schedules.
6
  Author: David Anderson.
7
+ Version: 0.8.31
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  Author URI: http://wordshell.net
10
  */
54
 
55
  class UpdraftPlus {
56
 
57
+ var $version = '0.8.31';
58
 
59
  var $dbhandle;
60
  var $errors = array();
652
  @unlink($fullpath); //delete it if it's locally available
653
  if ($updraft_service == "s3") {
654
  $this->log("$backup_datestamp: Delete remote: s3://$remote_path/$file");
655
+ if (!$remote_object->deleteObject($remote_path, $file)) {
656
  $this->error("S3 Error: Failed to delete object $file. Error was ".$php_errormsg);
657
  }
658
  } elseif ($updraft_service == "ftp") {
669
  @unlink($fullpath); //delete it if it's locally available
670
  if ($updraft_service == "s3") {
671
  $this->log("$backup_datestamp: Delete remote: s3://$remote_path/$file2");
672
+ if (!$remote_object->deleteObject($remote_path, $file2)) {
673
  $this->error("S3 Error: Failed to delete object $file2. Error was ".$php_errormsg);
674
  }
675
  } elseif ($updraft_service == "ftp") {
687
  @unlink($fullpath); //delete it if it's locally available
688
  if ($updraft_service == "s3") {
689
  $this->log("$backup_datestamp: Delete remote: s3://$remote_path/$file3");
690
+ if (!$remote_object->deleteObject($remote_path, $file3)) {
691
  $this->error("S3 Error: Failed to delete object $file3. Error was ".$php_errormsg);
692
  }
693
  } elseif ($updraft_service == "ftp") {