BackUpWordPress - Version 3.6.3.1

Version Description

= 3.4 =

  • This version introduces a major refactoring of the code responsible for the core backup engine. We made sure to write unit tests for the new code, and we have tested it on several user's sites. It fixes a lot of old bugs, and Windows users should see major improvements to reliability.

= 3.3.4 =

  • WordPress 4.4 compatibility.

= 3.3.1 =

  • Fixes a bug that would prevent downloading backups since 3.3.0 - please update.

= 3.2.5 =

  • Security fixes related to add_query_arg

= 3.2.1 =

  • Important bug fixes. Please upgrade to this version to avoid incomplete or broken backups.

= 3.1.3 =

  • Fixes backwards compatibility for add-ons and avoids a Fatal Error. Please upgrade straight to this version before upgrading your add-ons.

= 3.0.4 =

  • Fixes a few minor bugs. Immediate update is recommended.

= 3.0.2 =

  • Important: we have dropped support for PHP 5.2, you will not be able to activate BackUpWordPress on a server running PHP versions older than PHP 5.3.29

= 3.0.1 =

  • This is a critical update. Fixes a bug in the core backup library. Please update immediately.
Download this release

Release Info

Developer pauldewouters
Plugin Icon 128x128 BackUpWordPress
Version 3.6.3.1
Comparing to
See all releases

Code changes from version 3.6.3 to 3.6.3.1

backupwordpress.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: BackUpWordPress
4
  Plugin URI: http://bwp.hmn.md/
5
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>. On multisite, you'll find me under the Network Settings menu.
6
- Version: 3.6.3
7
  Author: Human Made Limited
8
  Author URI: http://hmn.md/
9
  License: GPL-2+
3
  Plugin Name: BackUpWordPress
4
  Plugin URI: http://bwp.hmn.md/
5
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>. On multisite, you'll find me under the Network Settings menu.
6
+ Version: 3.6.3.1
7
  Author: Human Made Limited
8
  Author URI: http://hmn.md/
9
  License: GPL-2+
classes/class-plugin.php CHANGED
@@ -6,7 +6,7 @@ namespace HM\BackUpWordPress;
6
  * Class Plugin
7
  */
8
  final class Plugin {
9
- const PLUGIN_VERSION = '3.6.3';
10
 
11
  /**
12
  * @var Plugin The singleton instance.
6
  * Class Plugin
7
  */
8
  final class Plugin {
9
+ const PLUGIN_VERSION = '3.6.3.1';
10
 
11
  /**
12
  * @var Plugin The singleton instance.
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === BackUpWordPress ===
2
  Contributors: humanmade, willmot, dashaluna, pauldewouters, joehoyle, mattheu, tcrsavage, cuvelier, katmoody, sambulance
3
- Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
4
  Requires at least: 3.9
5
  Tested up to: 4.7
6
- Stable tag: 3.6.3
7
 
8
  Simple automated backups of your WordPress-powered website.
9
 
@@ -158,7 +158,7 @@ users should see major improvements to reliability.
158
 
159
  == Changelog ==
160
 
161
- ### 3.6.3 / 2016-12-14
162
 
163
  * Fix issue where low disk space caused the admin interface to be unavailable
164
  * Fix issue where admin notices were causing databases and error logs to fill up
1
  === BackUpWordPress ===
2
  Contributors: humanmade, willmot, dashaluna, pauldewouters, joehoyle, mattheu, tcrsavage, cuvelier, katmoody, sambulance
3
+ Tags: back up, backup, backups, schedule, restore, restoration, migrate, migration, duplicate, copy, sftp, ftp, database, mysql, sql, dump, zip, db, files, archive, wp-cli, email, e-mail, cloud, dropbox, google drive, amazon, s3, dreamhost, dreamobjects, rackspace, microsoft, azure
4
  Requires at least: 3.9
5
  Tested up to: 4.7
6
+ Stable tag: 3.6.2
7
 
8
  Simple automated backups of your WordPress-powered website.
9
 
158
 
159
  == Changelog ==
160
 
161
+ ### 3.6.3.1 / 2016-12-14
162
 
163
  * Fix issue where low disk space caused the admin interface to be unavailable
164
  * Fix issue where admin notices were causing databases and error logs to fill up
vendor/composer/autoload_static.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_static.php @generated by Composer
4
+
5
+ namespace Composer\Autoload;
6
+
7
+ class ComposerStaticInitad035600fdf4e2767aebf7cd5f7d027e
8
+ {
9
+ public static $prefixLengthsPsr4 = array (
10
+ 'S' =>
11
+ array (
12
+ 'Symfony\\Component\\Process\\' => 26,
13
+ 'Symfony\\Component\\Finder\\' => 25,
14
+ ),
15
+ 'I' =>
16
+ array (
17
+ 'Ifsnop\\' => 7,
18
+ ),
19
+ );
20
+
21
+ public static $prefixDirsPsr4 = array (
22
+ 'Symfony\\Component\\Process\\' =>
23
+ array (
24
+ 0 => __DIR__ . '/..' . '/symfony/process',
25
+ ),
26
+ 'Symfony\\Component\\Finder\\' =>
27
+ array (
28
+ 0 => __DIR__ . '/..' . '/symfony/finder',
29
+ ),
30
+ 'Ifsnop\\' =>
31
+ array (
32
+ 0 => __DIR__ . '/..' . '/ifsnop/mysqldump-php/src/Ifsnop',
33
+ ),
34
+ );
35
+
36
+ public static function getInitializer(ClassLoader $loader)
37
+ {
38
+ return \Closure::bind(function () use ($loader) {
39
+ $loader->prefixLengthsPsr4 = ComposerStaticInitad035600fdf4e2767aebf7cd5f7d027e::$prefixLengthsPsr4;
40
+ $loader->prefixDirsPsr4 = ComposerStaticInitad035600fdf4e2767aebf7cd5f7d027e::$prefixDirsPsr4;
41
+
42
+ }, null, ClassLoader::class);
43
+ }
44
+ }