Version Description
- Fix .wpress.bin format
Download this release
Release Info
Developer | bangelov |
Plugin | All-in-One WP Migration |
Version | 4.2 |
Comparing to | |
See all releases |
Code changes from version 4.1 to 4.2
- all-in-one-wp-migration.php +1 -1
- constants.php +1 -1
- lib/model/class-ai1wm-export-abstract.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: 4.
|
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: 4.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', '4.
|
42 |
|
43 |
// ===============
|
44 |
// = Plugin Name =
|
38 |
// ==================
|
39 |
// = Plugin Version =
|
40 |
// ==================
|
41 |
+
define( 'AI1WM_VERSION', '4.2' );
|
42 |
|
43 |
// ===============
|
44 |
// = Plugin Name =
|
lib/model/class-ai1wm-export-abstract.php
CHANGED
@@ -355,7 +355,7 @@ abstract class Ai1wm_Export_Abstract {
|
|
355 |
// Add unique identifier
|
356 |
$name[] = rand( 100, 999 );
|
357 |
|
358 |
-
return sprintf( '%s.wpress
|
359 |
}
|
360 |
|
361 |
/**
|
355 |
// Add unique identifier
|
356 |
$name[] = rand( 100, 999 );
|
357 |
|
358 |
+
return sprintf( '%s.wpress', implode( '-', $name ) );
|
359 |
}
|
360 |
|
361 |
/**
|
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.3
|
6 |
-
Stable tag: 4.
|
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 |
= 4.1 =
|
61 |
* Add port to the host header on export/import
|
62 |
* Rename .wpress file to .wpress.bin file
|
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.3
|
6 |
+
Stable tag: 4.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 |
+
= 4.2 =
|
61 |
+
* Fix .wpress.bin format
|
62 |
+
|
63 |
= 4.1 =
|
64 |
* Add port to the host header on export/import
|
65 |
* Rename .wpress file to .wpress.bin file
|