Version Description
Download this release
Release Info
Developer | cssimmon |
Plugin | Backup and Restore WordPress – WPBackItUp Backup Plugin |
Version | 1.33.0 |
Comparing to | |
See all releases |
Code changes from version 1.32.0 to 1.33.0
- lib/includes/class-license.php +5 -4
- readme.txt +7 -2
- wp-backitup.php +2 -2
lib/includes/class-license.php
CHANGED
@@ -312,10 +312,11 @@ class WPBackItUp_License {
|
|
312 |
|
313 |
//if false try using site directly
|
314 |
//Suspect this is causing site to identify request as malicious. Likely no longer needed but comment out for next release.
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
|
|
319 |
|
320 |
return $license_data;
|
321 |
|
312 |
|
313 |
//if false try using site directly
|
314 |
//Suspect this is causing site to identify request as malicious. Likely no longer needed but comment out for next release.
|
315 |
+
if ( false === $license_data) {
|
316 |
+
sleep(2);//sleep 2 secs
|
317 |
+
WPBackItUp_Logger::log_error($this->log_name,__METHOD__, 'Unable to activate using Gateway - attempting direct');
|
318 |
+
$license_data= $this->edd_license_api_request(WPBACKITUP__SECURESITE_URL,'activate_license', $request_data);
|
319 |
+
}
|
320 |
|
321 |
return $license_data;
|
322 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: backup, backups, back up, backup plugin, database backup, multisite backup
|
|
4 |
Requires at least: 3.8.0
|
5 |
Requires PHP: 5.2.4
|
6 |
Tested up to: 5.1
|
7 |
-
Stable tag: 1.
|
8 |
Author URI: https://www.wpbackitup.com
|
9 |
Donate link: https://www.wpbackitup.com
|
10 |
License: GPLv2 or later
|
@@ -217,8 +217,13 @@ Our online documentation and full list of FAQs can be found at [support.wpbackit
|
|
217 |
|
218 |
|
219 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
220 |
= 1.32 =
|
221 |
-
*Release Date -
|
222 |
|
223 |
* UPDATE : Tested up to WP 5.1
|
224 |
* UPDATE : Added secure prefix to backup folder name to increase security
|
4 |
Requires at least: 3.8.0
|
5 |
Requires PHP: 5.2.4
|
6 |
Tested up to: 5.1
|
7 |
+
Stable tag: 1.32.0
|
8 |
Author URI: https://www.wpbackitup.com
|
9 |
Donate link: https://www.wpbackitup.com
|
10 |
License: GPLv2 or later
|
217 |
|
218 |
|
219 |
== Changelog ==
|
220 |
+
= 1.33 =
|
221 |
+
*Release Date - April 16, 2019
|
222 |
+
|
223 |
+
* UPDATE : Add license activation to bypass api gateway on failure
|
224 |
+
|
225 |
= 1.32 =
|
226 |
+
*Release Date - March 4, 2019
|
227 |
|
228 |
* UPDATE : Tested up to WP 5.1
|
229 |
* UPDATE : Added secure prefix to backup folder name to increase security
|
wp-backitup.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
|
7 |
* Author: WPBackItUp
|
8 |
* Author URI: https://www.wpbackitup.com
|
9 |
-
* Version: 1.
|
10 |
* Text Domain: wp-backitup
|
11 |
*
|
12 |
* License: GPL3
|
@@ -32,7 +32,7 @@ define( 'WPBACKITUP__NAMESPACE', 'wp-backitup' );
|
|
32 |
define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
|
33 |
|
34 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
35 |
-
define( 'WPBACKITUP__MINOR_VERSION',
|
36 |
define( 'WPBACKITUP__MAINTENANCE_VERSION', 0); //Dont forget to update version in header on WP release
|
37 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
38 |
|
6 |
* Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
|
7 |
* Author: WPBackItUp
|
8 |
* Author URI: https://www.wpbackitup.com
|
9 |
+
* Version: 1.33
|
10 |
* Text Domain: wp-backitup
|
11 |
*
|
12 |
* License: GPL3
|
32 |
define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
|
33 |
|
34 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
35 |
+
define( 'WPBACKITUP__MINOR_VERSION', 33);
|
36 |
define( 'WPBACKITUP__MAINTENANCE_VERSION', 0); //Dont forget to update version in header on WP release
|
37 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
38 |
|