Version Description
*Release Date - April 6,2017
- FIX: Fix for backup upload error
Download this release
Release Info
Developer | cssimmon |
Plugin | Backup and Restore WordPress – WPBackItUp Backup Plugin |
Version | 1.14.4 |
Comparing to | |
See all releases |
Code changes from version 1.14.3 to 1.14.4
- readme.txt +15 -9
- vendor/KLogger/Logger.php +1 -1
- wp-backitup.php +2 -2
readme.txt
CHANGED
@@ -1,17 +1,18 @@
|
|
1 |
-
=== Backup & Restore WPBackItUp ===
|
2 |
-
Contributors: wpbackitup, cssimmon, alaminopu, imranshuvo
|
3 |
-
|
4 |
-
Tags: backup, backups, restore, migrate, clone, duplicate, multisite, database, archive, malware, download, mysql
|
5 |
Requires at least: 3.8.0
|
6 |
-
Tested up to: 4.7.
|
7 |
-
Stable tag: 1.14.
|
|
|
|
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
Backup, restore, clone, duplicate or migrate your site effortlessly with WPBackItUp.
|
12 |
|
13 |
== Description ==
|
14 |
-
With WPBackItUp you're **protected** against hackers, malware, host outages, and even your own mistakes. WPBackItUp backs up every setting, post, comment, revision, plugin, theme, media file and upload with just a single click. WPBackItUp creates compressed backups of your entire website and no matter how large your site, backups can be quickly and easily downloaded right from your WordPress dashboard.
|
15 |
|
16 |
WPBackItUp has been available to the WordPress community since **2012** and is used to create millions of backups every year. It's one of the most widely **tested**, **reliable**, and **highly rated** backup plugins available! And with our long history, you can feel confident that we are going to be around for many years to come.
|
17 |
|
@@ -195,12 +196,17 @@ Our online documentation and full list of FAQs can be found at [support.wpbackit
|
|
195 |
|
196 |
|
197 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
198 |
= 1.14.3 =
|
199 |
*Release Date - March 16,2017
|
200 |
|
201 |
* UPDATE: Added new admin notice class
|
202 |
* UPDATE: Added new logging class
|
203 |
-
* UPDATE:
|
204 |
|
205 |
= 1.14.2 =
|
206 |
*Release Date - March 7, 2017
|
1 |
+
=== WordPress Backup & Restore Plugin - WPBackItUp ===
|
2 |
+
Contributors: wpbackitup, cssimmon, alaminopu, imranshuvo, backup
|
3 |
+
Tags: backup, backups, back up, backup plugin, database backup, multisite backup, full backup, database, restore, migrate, clone, malware
|
|
|
4 |
Requires at least: 3.8.0
|
5 |
+
Tested up to: 4.7.4
|
6 |
+
Stable tag: 1.14.4
|
7 |
+
Author URI: https://www.wpbackitup.com
|
8 |
+
Donate link: https://www.wpbackitup.com
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
12 |
+
Backup, restore, clone, duplicate or migrate your site effortlessly with WPBackItUp. Backup every setting, post, comment, revision, plugin, theme, media file, upload, backup everything with a single click.
|
13 |
|
14 |
== Description ==
|
15 |
+
With [WPBackItUp](https://www.wpbackitup.com/?utm_medium=partner&utm_source=wordpress.org&utm_campaign=plugin+directory&utm_content=description&utm_term=main) you're **protected** against hackers, malware, host outages, and even your own mistakes. WPBackItUp backs up every setting, post, comment, revision, plugin, theme, media file and upload with just a single click. WPBackItUp creates compressed backups of your entire website and no matter how large your site, backups can be quickly and easily downloaded right from your WordPress dashboard.
|
16 |
|
17 |
WPBackItUp has been available to the WordPress community since **2012** and is used to create millions of backups every year. It's one of the most widely **tested**, **reliable**, and **highly rated** backup plugins available! And with our long history, you can feel confident that we are going to be around for many years to come.
|
18 |
|
196 |
|
197 |
|
198 |
== Changelog ==
|
199 |
+
= 1.14.4 =
|
200 |
+
*Release Date - April 6,2017
|
201 |
+
|
202 |
+
* FIX: Fix for backup upload error
|
203 |
+
|
204 |
= 1.14.3 =
|
205 |
*Release Date - March 16,2017
|
206 |
|
207 |
* UPDATE: Added new admin notice class
|
208 |
* UPDATE: Added new logging class
|
209 |
+
* UPDATE: Add support for extremely large databases(500+ SQL files)
|
210 |
|
211 |
= 1.14.2 =
|
212 |
*Release Date - March 7, 2017
|
vendor/KLogger/Logger.php
CHANGED
@@ -360,7 +360,7 @@ class Logger
|
|
360 |
}
|
361 |
|
362 |
} else {
|
363 |
-
if(is_array($message)){
|
364 |
$message = "[{$this->getTimestamp()}] [{$level}] {$this->contextToString($message)}";
|
365 |
}else{
|
366 |
$message = "[{$this->getTimestamp()}] [{$level}] {$message}";
|
360 |
}
|
361 |
|
362 |
} else {
|
363 |
+
if(is_array($message) || is_object($message)){
|
364 |
$message = "[{$this->getTimestamp()}] [{$level}] {$this->contextToString($message)}";
|
365 |
}else{
|
366 |
$message = "[{$this->getTimestamp()}] [{$level}] {$message}";
|
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.14.
|
10 |
* Text Domain: wp-backitup
|
11 |
* Domain Path: /languages
|
12 |
*
|
@@ -34,7 +34,7 @@ define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
|
|
34 |
|
35 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
36 |
define( 'WPBACKITUP__MINOR_VERSION', 14);
|
37 |
-
define( 'WPBACKITUP__MAINTENANCE_VERSION',
|
38 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
39 |
|
40 |
define( 'WPBACKITUP__VERSION',sprintf("%d.%d.%d.%d", WPBACKITUP__MAJOR_VERSION, WPBACKITUP__MINOR_VERSION,WPBACKITUP__MAINTENANCE_VERSION,WPBACKITUP__BUILD_VERSION));
|
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.14.4
|
10 |
* Text Domain: wp-backitup
|
11 |
* Domain Path: /languages
|
12 |
*
|
34 |
|
35 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
36 |
define( 'WPBACKITUP__MINOR_VERSION', 14);
|
37 |
+
define( 'WPBACKITUP__MAINTENANCE_VERSION', 4); //Dont forget to update version in header on WP release
|
38 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
39 |
|
40 |
define( 'WPBACKITUP__VERSION',sprintf("%d.%d.%d.%d", WPBACKITUP__MAJOR_VERSION, WPBACKITUP__MINOR_VERSION,WPBACKITUP__MAINTENANCE_VERSION,WPBACKITUP__BUILD_VERSION));
|