UpdraftPlus WordPress Backup Plugin - Version 0.9.22

Version Description

  • 12/07/2012 =
  • Implemented resumption of uploading on Google Drive - much bigger sites can now be backed up
  • Fixed bug whereby setting for deleting local backups was lost
Download this release

Release Info

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

Code changes from version 0.9.21 to 0.9.22

Files changed (2) hide show
  1. readme.txt +7 -4
  2. updraftplus.php +3 -3
readme.txt CHANGED
@@ -8,7 +8,7 @@ Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv3 or later
9
 
10
  == Upgrade Notice ==
11
- Chunked, resumable uploading with Amazon S3 - much bigger blogs can now be backed up
12
 
13
  == Description ==
14
 
@@ -42,7 +42,7 @@ That's no problem. If you have your backed files, then you simply need to unzip
42
 
43
  = Anything essential to know? =
44
 
45
- After you have set up UpdraftPlus, you must check that your backups are taking place successfully. WordPress is a complex piece of software that runs in many situations. Don't wait until you need your backups before you find out that they never worked in the first place. Remember, there's no warranty.
46
 
47
  = What exactly does UpdraftPlus back up ? =
48
 
@@ -53,7 +53,7 @@ Unless you disable any of these, it will back up your database (all tables which
53
  It does not back up WordPress core (since you can always get another copy of this from wordpress.org), and does not back up any extra files which you have added outside of the WordPress content directory (files which, by their nature, are unknown to WordPress). By default the WordPress content directory is "wp-content" in your WordPress root. It will not back up database tables which do not have the WordPress prefix (i.e. database tables from other applications but sharing a database with WordPress).
54
 
55
  = Any known bugs ? =
56
- Not a bug as such, but one major issue to be aware of is that backups of very large sites (lots of uploaded media) can fail due to timing out. This depends on how manys seconds your web host allows a PHP process to run. With such sites, you need to use Amazon S3, which UpdraftPlus supports (since 0.9.20) with chunked, resumable uploads. All other backup methods have code (since 0.9.0) to retry failed uploads of an archive, but the upload cannot be chunked, so if an archive is enormous (i.e. cannot be completely uploaded in the time that PHP is allowed for running on your web host) it cannot work. Google Drive supports chunked, resumable uploads, but that code is not yet in UpdraftPlus (please send me a donation if you want me to hurry up!).
57
 
58
  = I encrypted my database - how do I decrypt it? =
59
 
@@ -67,9 +67,12 @@ Nothing, probably. That's the point of an encryption key - people who don't have
67
 
68
  Contact me! This is a complex plugin and the only way I can ensure it's robust is to get bug reports and fix the problems that crop up. Please turn on debugging mode and send me the log if you can find it. Include as much information as you can when reporting (PHP version, your blog's site, the error you saw and how you got to the page that caused it, etcetera). If you can send a patch, that's even better.
69
 
 
 
 
70
  == Changelog ==
71
 
72
- = 0.9.21 - 12/07/2012 =
73
  * Implemented resumption of uploading on Google Drive - much bigger sites can now be backed up
74
  * Fixed bug whereby setting for deleting local backups was lost
75
 
8
  License: GPLv3 or later
9
 
10
  == Upgrade Notice ==
11
+ Chunked, resumable uploading with Amazon S3 and Google Drive - much bigger blogs can now be backed up
12
 
13
  == Description ==
14
 
42
 
43
  = Anything essential to know? =
44
 
45
+ After you have set up UpdraftPlus, you must check that your backups are taking place successfully. WordPress is a complex piece of software that runs in many situations. Don't wait until you need your backups before you find out that they never worked in the first place. Remember, there's no warranty and no guarantees - this is free software.
46
 
47
  = What exactly does UpdraftPlus back up ? =
48
 
53
  It does not back up WordPress core (since you can always get another copy of this from wordpress.org), and does not back up any extra files which you have added outside of the WordPress content directory (files which, by their nature, are unknown to WordPress). By default the WordPress content directory is "wp-content" in your WordPress root. It will not back up database tables which do not have the WordPress prefix (i.e. database tables from other applications but sharing a database with WordPress).
54
 
55
  = Any known bugs ? =
56
+ Not a bug as such, but one major issue to be aware of is that backups of very large sites (lots of uploaded media) can fail due to timing out. This depends on how manys seconds your web host allows a PHP process to run. With such sites, you need to use Amazon S3, which UpdraftPlus supports (since 0.9.20) or Google Drive (since 0.9.21) with chunked, resumable uploads. Other backup methods have code (since 0.9.0) to retry failed uploads of an archive, but the upload cannot be chunked, so if an archive is enormous (i.e. cannot be completely uploaded in the time that PHP is allowed for running on your web host) it cannot work.
57
 
58
  = I encrypted my database - how do I decrypt it? =
59
 
67
 
68
  Contact me! This is a complex plugin and the only way I can ensure it's robust is to get bug reports and fix the problems that crop up. Please turn on debugging mode and send me the log if you can find it. Include as much information as you can when reporting (PHP version, your blog's site, the error you saw and how you got to the page that caused it, etcetera). If you can send a patch, that's even better.
69
 
70
+ = My site was hacked, and I have no backups! I thought UpdraftPlus was working! Can I kill you? =
71
+ No, there's no warranty or guarantee, etc. It's completely up to you to verify that UpdraftPlus is working correctly. If it doesn't then that's unfortunate, but this is a free plugin.
72
+
73
  == Changelog ==
74
 
75
+ = 0.9.22 - 12/07/2012 =
76
  * Implemented resumption of uploading on Google Drive - much bigger sites can now be backed up
77
  * Fixed bug whereby setting for deleting local backups was lost
78
 
updraftplus.php CHANGED
@@ -4,9 +4,9 @@ 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, on separate schedules.
6
  Author: David Anderson.
7
- Version: 0.9.21
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
- License: GPL3
10
  Author URI: http://wordshell.net
11
  */
12
 
@@ -61,7 +61,7 @@ define('UPDRAFT_DEFAULT_OTHERS_EXCLUDE','upgrade,cache,updraft,index.php');
61
 
62
  class UpdraftPlus {
63
 
64
- var $version = '0.9.21';
65
 
66
  var $dbhandle;
67
  var $errors = array();
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, on separate schedules.
6
  Author: David Anderson.
7
+ Version: 0.9.22
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
+ License: GPLv3 or later
10
  Author URI: http://wordshell.net
11
  */
12
 
61
 
62
  class UpdraftPlus {
63
 
64
+ var $version = '0.9.22';
65
 
66
  var $dbhandle;
67
  var $errors = array();