Version Description
- Fix an issue with resolving URL on export/import
Download this release
Release Info
Developer | bangelov |
Plugin | All-in-One WP Migration |
Version | 5.54 |
Comparing to | |
See all releases |
Code changes from version 5.53 to 5.54
- all-in-one-wp-migration.php +1 -1
- constants.php +1 -1
- lib/model/http/class-ai1wm-http-stream.php +1 -3
- 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.54
|
9 |
* Text Domain: all-in-one-wp-migration
|
10 |
* Domain Path: /languages
|
11 |
* Network: True
|
constants.php
CHANGED
@@ -38,7 +38,7 @@ if ( function_exists( 'gethostname' ) && in_array( gethostname(), $local ) ) {
|
|
38 |
// ==================
|
39 |
// = Plugin Version =
|
40 |
// ==================
|
41 |
-
define( 'AI1WM_VERSION', '5.
|
42 |
|
43 |
// ===============
|
44 |
// = Plugin Name =
|
38 |
// ==================
|
39 |
// = Plugin Version =
|
40 |
// ==================
|
41 |
+
define( 'AI1WM_VERSION', '5.54' );
|
42 |
|
43 |
// ===============
|
44 |
// = Plugin Name =
|
lib/model/http/class-ai1wm-http-stream.php
CHANGED
@@ -95,9 +95,7 @@ class Ai1wm_Http_Stream extends Ai1wm_Http_Abstract {
|
|
95 |
|
96 |
// Set blocking/non-blocking mode on a stream
|
97 |
if ( $blocking ) {
|
98 |
-
|
99 |
-
fread( $handle, 1024 );
|
100 |
-
}
|
101 |
} else {
|
102 |
stream_set_blocking( $handle, 0 );
|
103 |
}
|
95 |
|
96 |
// Set blocking/non-blocking mode on a stream
|
97 |
if ( $blocking ) {
|
98 |
+
fread( $handle, 1024 );
|
|
|
|
|
99 |
} else {
|
100 |
stream_set_blocking( $handle, 0 );
|
101 |
}
|
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.6
|
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.
|
@@ -78,6 +78,9 @@ All in One WP Plugin is the first plugin to offer true mobile experience on Word
|
|
78 |
3. Plugin Menu
|
79 |
|
80 |
== Changelog ==
|
|
|
|
|
|
|
81 |
= 5.53 =
|
82 |
* Send HTTP basic authorization header on upload (fetch method)
|
83 |
* Add Accept-Encoding, Accept-Charset and Accept-Language on export/import
|
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.6
|
6 |
+
Stable tag: 5.54
|
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.
|
78 |
3. Plugin Menu
|
79 |
|
80 |
== Changelog ==
|
81 |
+
= 5.54 =
|
82 |
+
* Fix an issue with resolving URL on export/import
|
83 |
+
|
84 |
= 5.53 =
|
85 |
* Send HTTP basic authorization header on upload (fetch method)
|
86 |
* Add Accept-Encoding, Accept-Charset and Accept-Language on export/import
|