Version Description
- Fix a bug in uploads path replacement
Download this release
Release Info
Developer | bangelov |
Plugin | All-in-One WP Migration |
Version | 5.39 |
Comparing to | |
See all releases |
Code changes from version 5.38 to 5.39
- all-in-one-wp-migration.php +1 -1
- constants.php +1 -1
- lib/vendor/servmask/archiver/class-ai1wm-extractor.php +1 -1
- readme.txt +4 -1
all-in-one-wp-migration.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Migration tool for all your blog data. Import or Export your blog content with a single click.
|
6 |
* Author: ServMask
|
7 |
* Author URI: https://servmask.com/
|
8 |
-
* Version: 5.
|
9 |
* Text Domain: all-in-one-wp-migration
|
10 |
* Domain Path: /languages
|
11 |
* Network: True
|
5 |
* Description: Migration tool for all your blog data. Import or Export your blog content with a single click.
|
6 |
* Author: ServMask
|
7 |
* Author URI: https://servmask.com/
|
8 |
+
* Version: 5.39
|
9 |
* Text Domain: all-in-one-wp-migration
|
10 |
* Domain Path: /languages
|
11 |
* Network: True
|
constants.php
CHANGED
@@ -39,7 +39,7 @@ if ( function_exists( 'gethostname' ) && in_array( gethostname(), $local ) ) {
|
|
39 |
// ==================
|
40 |
// = Plugin Version =
|
41 |
// ==================
|
42 |
-
define( 'AI1WM_VERSION', '5.
|
43 |
|
44 |
// ===============
|
45 |
// = Plugin Name =
|
39 |
// ==================
|
40 |
// = Plugin Version =
|
41 |
// ==================
|
42 |
+
define( 'AI1WM_VERSION', '5.39' );
|
43 |
|
44 |
// ===============
|
45 |
// = Plugin Name =
|
lib/vendor/servmask/archiver/class-ai1wm-extractor.php
CHANGED
@@ -128,7 +128,7 @@ class Ai1wm_Extractor extends Ai1wm_Archiver {
|
|
128 |
|
129 |
try {
|
130 |
// we have a match, let's extract the file
|
131 |
-
if ( ( $offset = $this->extract_to( $location . DIRECTORY_SEPARATOR . $filename, $data, $offset, $timeout ) ) ) {
|
132 |
return $offset;
|
133 |
}
|
134 |
} catch ( Exception $e ) {
|
128 |
|
129 |
try {
|
130 |
// we have a match, let's extract the file
|
131 |
+
if ( ( $offset = $this->extract_to( $location . DIRECTORY_SEPARATOR . $path . DIRECTORY_SEPARATOR . basename( $filename ), $data, $offset, $timeout ) ) ) {
|
132 |
return $offset;
|
133 |
}
|
134 |
} catch ( Exception $e ) {
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: yani.iliev, bangelov, pimjitsawang
|
|
3 |
Tags: db migration, migration, wordpress migration, db backup, db restore, website backup, website restore, website migration, website deploy, wordpress deploy, db backup, database export, database serialization, database find replace
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 4.4
|
6 |
-
Stable tag: 5.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
All-in-One WP Migration is the only tool that you will ever need to migrate a WordPress site.
|
@@ -75,6 +75,9 @@ All in One WP Plugin is the first plugin to offer true mobile experience on Word
|
|
75 |
3. Plugin Menu
|
76 |
|
77 |
== Changelog ==
|
|
|
|
|
|
|
78 |
= 5.38 =
|
79 |
* Deactivate mu-plugins if fatal error appears on import
|
80 |
|
3 |
Tags: db migration, migration, wordpress migration, db backup, db restore, website backup, website restore, website migration, website deploy, wordpress deploy, db backup, database export, database serialization, database find replace
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 4.4
|
6 |
+
Stable tag: 5.39
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
All-in-One WP Migration is the only tool that you will ever need to migrate a WordPress site.
|
75 |
3. Plugin Menu
|
76 |
|
77 |
== Changelog ==
|
78 |
+
= 5.39 =
|
79 |
+
* Fix a bug in uploads path replacement
|
80 |
+
|
81 |
= 5.38 =
|
82 |
* Deactivate mu-plugins if fatal error appears on import
|
83 |
|