Version Description
- Fixed typos in tooltip about queries
- Modified default value of queries
Download this release
Release Info
Developer | iclyde |
Plugin | Backup Migration |
Version | 1.1.5 |
Comparing to | |
See all releases |
Code changes from version 1.1.4 to 1.1.5
- backup-backup.php +2 -2
- includes/dashboard/chapter/other_config.php +2 -2
- includes/htaccess/default.json +1 -1
- readme.txt +11 -5
backup-backup.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Author URI: https://backupbliss.com/
|
8 |
* Plugin URI: https://backupbliss.com
|
9 |
* Text Domain: backup-backup
|
10 |
-
* Version: 1.1.
|
11 |
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
12 |
|
13 |
// Exit on direct access
|
@@ -21,7 +21,7 @@
|
|
21 |
define('BMI_DEBUG', false);
|
22 |
}
|
23 |
if (!defined('BMI_VERSION')) {
|
24 |
-
define('BMI_VERSION', '1.1.
|
25 |
}
|
26 |
if (!defined('BMI_ROOT_DIR')) {
|
27 |
define('BMI_ROOT_DIR', __DIR__);
|
7 |
* Author URI: https://backupbliss.com/
|
8 |
* Plugin URI: https://backupbliss.com
|
9 |
* Text Domain: backup-backup
|
10 |
+
* Version: 1.1.5
|
11 |
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
12 |
|
13 |
// Exit on direct access
|
21 |
define('BMI_DEBUG', false);
|
22 |
}
|
23 |
if (!defined('BMI_VERSION')) {
|
24 |
+
define('BMI_VERSION', '1.1.5');
|
25 |
}
|
26 |
if (!defined('BMI_ROOT_DIR')) {
|
27 |
define('BMI_ROOT_DIR', __DIR__);
|
includes/dashboard/chapter/other_config.php
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
$experimental_info_1 = __('Use this option if you have full access to your server and you know how to make basic configuration of the server. Wrong configuration may give you hick-ups without error due to e.g. web server server timeout (for small sites below 300 MB this is the best option).', 'backup-backup');
|
15 |
$experimental_info_2 = __('Use this option before the third one, it should work fine on SSD/NVMe hostings even for huge backups - but still may timeout if you are running on slow drive high I/O.', 'backup-backup');
|
16 |
$experimental_info_3 = __('This option will require you to not close the backup window since it will use your connection to keep the backup in parts, it will disable automatic backups. Use this only if all of the above does not work. Recommended for huge sites +100k files / 5+ GB.', 'backup-backup');
|
17 |
-
$db_query_info = __('Lower value means slower process but more stable restore, higher value means quicker backup and restore but it may be unstable (depends on database server performance). Default value:
|
18 |
$sqlsplitting = __('This will split the SQL files (before migration or restore) into parts, which should make the process more stable and also allows to track the progress more precisely.', 'backup-backup');
|
19 |
|
20 |
?>
|
@@ -379,7 +379,7 @@
|
|
379 |
<div class="left">
|
380 |
<?php $query_amount = sanitize_text_field(bmi_get_config('OTHER:DB:QUERIES')); ?>
|
381 |
<label for="db_queries_amount">
|
382 |
-
<input type="number" id="db_queries_amount" class="bmi-text-input small" value="<?php echo $query_amount; ?>" placeholder="
|
383 |
</label>
|
384 |
</div>
|
385 |
</div>
|
14 |
$experimental_info_1 = __('Use this option if you have full access to your server and you know how to make basic configuration of the server. Wrong configuration may give you hick-ups without error due to e.g. web server server timeout (for small sites below 300 MB this is the best option).', 'backup-backup');
|
15 |
$experimental_info_2 = __('Use this option before the third one, it should work fine on SSD/NVMe hostings even for huge backups - but still may timeout if you are running on slow drive high I/O.', 'backup-backup');
|
16 |
$experimental_info_3 = __('This option will require you to not close the backup window since it will use your connection to keep the backup in parts, it will disable automatic backups. Use this only if all of the above does not work. Recommended for huge sites +100k files / 5+ GB.', 'backup-backup');
|
17 |
+
$db_query_info = __('Lower value means slower process but more stable restore, higher value means quicker backup and restore but it may be unstable (depends on database server performance). Default value: 800.', 'backup-backup');
|
18 |
$sqlsplitting = __('This will split the SQL files (before migration or restore) into parts, which should make the process more stable and also allows to track the progress more precisely.', 'backup-backup');
|
19 |
|
20 |
?>
|
379 |
<div class="left">
|
380 |
<?php $query_amount = sanitize_text_field(bmi_get_config('OTHER:DB:QUERIES')); ?>
|
381 |
<label for="db_queries_amount">
|
382 |
+
<input type="number" id="db_queries_amount" class="bmi-text-input small" value="<?php echo $query_amount; ?>" placeholder="800" min="15" max="15000" />
|
383 |
</label>
|
384 |
</div>
|
385 |
</div>
|
includes/htaccess/default.json
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
"OTHER:DOWNLOAD:DIRECT": false,
|
34 |
"OTHER:CLI:DISABLE": false,
|
35 |
"OTHER:CLI:PATH": "",
|
36 |
-
"OTHER:DB:QUERIES": "
|
37 |
"OTHER:RESTORE:SPLITTING": false,
|
38 |
"CRON:ENABLED": false,
|
39 |
"CRON:TYPE": "month",
|
33 |
"OTHER:DOWNLOAD:DIRECT": false,
|
34 |
"OTHER:CLI:DISABLE": false,
|
35 |
"OTHER:CLI:PATH": "",
|
36 |
+
"OTHER:DB:QUERIES": "800",
|
37 |
"OTHER:RESTORE:SPLITTING": false,
|
38 |
"CRON:ENABLED": false,
|
39 |
"CRON:TYPE": "month",
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Backup Migration ===
|
2 |
Contributors: Migrate
|
3 |
-
Tags: Backup, Migration, Migrate, Backups, Restore, Duplicate
|
4 |
Requires at least: 4.6
|
5 |
Tested up to: 5.8.1
|
6 |
-
Stable tag: 1.1.
|
7 |
License: GPLv3
|
8 |
Requires PHP: 5.6
|
9 |
|
@@ -25,7 +25,7 @@ Use a wide choice of configuration options:
|
|
25 |
- Define where the backup will be stored (as of now, only local option is available, but we'll expand this soon)
|
26 |
- Define what name your backup should have, in which instances you should receive a notification email, and much more
|
27 |
|
28 |
-
This plugin is
|
29 |
|
30 |
Note: This (free) version is limited to backups of 2GB in size. For unlimited sizes, please have a look at the [Premium Plugin](https://backupbliss.com).
|
31 |
|
@@ -118,6 +118,10 @@ Besides having the most intuitive interface and smoothest user experience, Backu
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
|
|
|
|
121 |
= 1.1.4 =
|
122 |
* Tested up to WordPress 5.8.1
|
123 |
* Fixed warnings in PHP 8 and adjusted ob_clean functions (Thank you @jrevillini)
|
@@ -282,8 +286,10 @@ Besides having the most intuitive interface and smoothest user experience, Backu
|
|
282 |
|
283 |
== Upgrade Notice ==
|
284 |
|
285 |
-
= 1.1.
|
286 |
-
What's new in 1.1.
|
|
|
|
|
287 |
* Tested up to WordPress 5.8.1
|
288 |
* Fixed warnings in PHP 8 and adjusted ob_clean functions (Thank you @jrevillini)
|
289 |
* Added force stop for restoration and migration process
|
1 |
=== Backup Migration ===
|
2 |
Contributors: Migrate
|
3 |
+
Tags: Backup, Migration, Migrate, Backups, Restore, All In One, Duplicate, Clone, Import, Export, Transfer
|
4 |
Requires at least: 4.6
|
5 |
Tested up to: 5.8.1
|
6 |
+
Stable tag: 1.1.5
|
7 |
License: GPLv3
|
8 |
Requires PHP: 5.6
|
9 |
|
25 |
- Define where the backup will be stored (as of now, only local option is available, but we'll expand this soon)
|
26 |
- Define what name your backup should have, in which instances you should receive a notification email, and much more
|
27 |
|
28 |
+
This plugin is all in one solution if you need to migrate your site to another host or just restore the local backup.
|
29 |
|
30 |
Note: This (free) version is limited to backups of 2GB in size. For unlimited sizes, please have a look at the [Premium Plugin](https://backupbliss.com).
|
31 |
|
118 |
|
119 |
== Changelog ==
|
120 |
|
121 |
+
= 1.1.5 =
|
122 |
+
* Fixed typos in tooltip about queries
|
123 |
+
* Modified default value of queries
|
124 |
+
|
125 |
= 1.1.4 =
|
126 |
* Tested up to WordPress 5.8.1
|
127 |
* Fixed warnings in PHP 8 and adjusted ob_clean functions (Thank you @jrevillini)
|
286 |
|
287 |
== Upgrade Notice ==
|
288 |
|
289 |
+
= 1.1.5 =
|
290 |
+
What's new in 1.1.5?
|
291 |
+
* Fixed typos in tooltip about queries
|
292 |
+
* Modified default value of queries
|
293 |
* Tested up to WordPress 5.8.1
|
294 |
* Fixed warnings in PHP 8 and adjusted ob_clean functions (Thank you @jrevillini)
|
295 |
* Added force stop for restoration and migration process
|