Version Description
- Fixed plugin incompatibility during export/import that was reporting that the process could not be started
Download this release
Release Info
Developer | bangelov |
Plugin | All-in-One WP Migration |
Version | 3.2.2 |
Comparing to | |
See all releases |
Code changes from version 3.2.1 to 3.2.2
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: 3.2.
|
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: 3.2.2
|
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', '3.2.
|
42 |
|
43 |
// ===============
|
44 |
// = Plugin Name =
|
38 |
// ==================
|
39 |
// = Plugin Version =
|
40 |
// ==================
|
41 |
+
define( 'AI1WM_VERSION', '3.2.2' );
|
42 |
|
43 |
// ===============
|
44 |
// = Plugin Name =
|
lib/controller/class-ai1wm-export-controller.php
CHANGED
@@ -37,7 +37,7 @@ class Ai1wm_Export_Controller {
|
|
37 |
);
|
38 |
}
|
39 |
|
40 |
-
public static function export(
|
41 |
try {
|
42 |
|
43 |
// Set arguments
|
37 |
);
|
38 |
}
|
39 |
|
40 |
+
public static function export( $args = array() ) {
|
41 |
try {
|
42 |
|
43 |
// Set arguments
|
lib/controller/class-ai1wm-import-controller.php
CHANGED
@@ -28,7 +28,7 @@ class Ai1wm_Import_Controller {
|
|
28 |
Ai1wm_Template::render( 'import/index' );
|
29 |
}
|
30 |
|
31 |
-
public static function import(
|
32 |
try {
|
33 |
|
34 |
// Set arguments
|
28 |
Ai1wm_Template::render( 'import/index' );
|
29 |
}
|
30 |
|
31 |
+
public static function import( $args = array() ) {
|
32 |
try {
|
33 |
|
34 |
// Set arguments
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
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 |
-
Stable tag: 3.2.
|
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.
|
@@ -57,6 +57,9 @@ All in One WP Plugin is the first plugin to offer true mobile experience on Word
|
|
57 |
3. Plugin Menu
|
58 |
|
59 |
== Changelog ==
|
|
|
|
|
|
|
60 |
= 3.2.1 =
|
61 |
* Added username/password settings for WordPress sites behind HTTP basic authentication
|
62 |
* Fixed a bug when exporting/importing without public DNS record
|
2 |
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.2
|
6 |
+
Stable tag: 3.2.2
|
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.
|
57 |
3. Plugin Menu
|
58 |
|
59 |
== Changelog ==
|
60 |
+
= 3.2.2 =
|
61 |
+
* Fixed plugin incompatibility during export/import that was reporting that the process could not be started
|
62 |
+
|
63 |
= 3.2.1 =
|
64 |
* Added username/password settings for WordPress sites behind HTTP basic authentication
|
65 |
* Fixed a bug when exporting/importing without public DNS record
|