UpdraftPlus WordPress Backup Plugin - Version 1.4.7

Version Description

  • 02/09/2013 =
  • Tweak for some Amazon EU West 1 bucket users
Download this release

Release Info

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

Code changes from version 1.4.6 to 1.4.7

Files changed (3) hide show
  1. methods/s3.php +1 -0
  2. readme.txt +5 -2
  3. updraftplus.php +3 -3
methods/s3.php CHANGED
@@ -9,6 +9,7 @@ class UpdraftPlus_BackupModule_s3 {
9
  function set_endpoint($obj, $region) {
10
  switch ($region) {
11
  case 'EU':
 
12
  $endpoint = 's3-eu-west-1.amazonaws.com';
13
  break;
14
  case 'us-west-1':
9
  function set_endpoint($obj, $region) {
10
  switch ($region) {
11
  case 'EU':
12
+ case 'eu-west-1':
13
  $endpoint = 's3-eu-west-1.amazonaws.com';
14
  break;
15
  case 'us-west-1':
readme.txt CHANGED
@@ -3,12 +3,12 @@ Contributors: David Anderson
3
  Tags: backup, restore, database, cloud, amazon, s3, dropbox, google drive, ftp, cloud, back up, multisite
4
  Requires at least: 3.2
5
  Tested up to: 3.5.1
6
- Stable tag: 1.4.6
7
  Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv3 or later
9
 
10
  == Upgrade Notice ==
11
- Amazon S3 now working with non-US buckets. More overlap detection.
12
 
13
  == Description ==
14
 
@@ -145,6 +145,9 @@ Thanks for asking - yes, I have. Check out my profile page - http://profiles.wor
145
 
146
  == Changelog ==
147
 
 
 
 
148
  = 1.4.6 - 02/07/2013 =
149
  * Amazon S3 now works for users with non-US buckets
150
  * Further tweak to overlap detection
3
  Tags: backup, restore, database, cloud, amazon, s3, dropbox, google drive, ftp, cloud, back up, multisite
4
  Requires at least: 3.2
5
  Tested up to: 3.5.1
6
+ Stable tag: 1.4.7
7
  Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv3 or later
9
 
10
  == Upgrade Notice ==
11
+ Tweak for some Amazon S3 EU West 1 bucket users
12
 
13
  == Description ==
14
 
145
 
146
  == Changelog ==
147
 
148
+ = 1.4.7 - 02/09/2013 =
149
+ * Tweak for some Amazon EU West 1 bucket users
150
+
151
  = 1.4.6 - 02/07/2013 =
152
  * Amazon S3 now works for users with non-US buckets
153
  * Further tweak to overlap detection
updraftplus.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
4
  Plugin URI: http://wordpress.org/extend/plugins/updraftplus
5
  Description: Backup and restore: your content and database can be automatically backed up to Amazon S3, Dropbox, Google Drive, FTP or email, on separate schedules.
6
  Author: David Anderson.
7
- Version: 1.4.6
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
  Author URI: http://wordshell.net
@@ -96,7 +96,7 @@ if (!class_exists('UpdraftPlus_Options')) require_once(UPDRAFTPLUS_DIR.'/options
96
 
97
  class UpdraftPlus {
98
 
99
- var $version = '1.4.6';
100
  var $plugin_title = 'UpdraftPlus Backup/Restore';
101
 
102
  // Choices will be shown in the admin menu in the order used here
@@ -201,7 +201,7 @@ class UpdraftPlus {
201
  $this->opened_log_time = microtime(true);
202
  $this->log("Opened log file at time: ".date('r'));
203
  global $wp_version;
204
- $logline = "UpdraftPlus: ".$this->version." WordPress: ".$wp_version." PHP: ".phpversion()." (".@php_uname().") PHP Max Execution Time: ".@ini_get("max_execution_time")." ZipArchive::addFile exists: ";
205
  $logline .= (method_exists('ZipArchive', 'addFile')) ? "Y" : "N";
206
  $this->log($logline);
207
  }
4
  Plugin URI: http://wordpress.org/extend/plugins/updraftplus
5
  Description: Backup and restore: your content and database can be automatically backed up to Amazon S3, Dropbox, Google Drive, FTP or email, on separate schedules.
6
  Author: David Anderson.
7
+ Version: 1.4.7
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
  Author URI: http://wordshell.net
96
 
97
  class UpdraftPlus {
98
 
99
+ var $version = '1.4.7';
100
  var $plugin_title = 'UpdraftPlus Backup/Restore';
101
 
102
  // Choices will be shown in the admin menu in the order used here
201
  $this->opened_log_time = microtime(true);
202
  $this->log("Opened log file at time: ".date('r'));
203
  global $wp_version;
204
+ $logline = "UpdraftPlus: ".$this->version." WordPress: ".$wp_version." PHP: ".phpversion()." (".php_uname().") PHP Max Execution Time: ".@ini_get("max_execution_time")." ZipArchive::addFile exists: ";
205
  $logline .= (method_exists('ZipArchive', 'addFile')) ? "Y" : "N";
206
  $this->log($logline);
207
  }