Version Description
Added
- Support for BuddyPress plugin
Download this release
Release Info
Developer | bangelov |
Plugin | All-in-One WP Migration |
Version | 7.48 |
Comparing to | |
See all releases |
Code changes from version 7.47 to 7.48
- all-in-one-wp-migration.php +1 -1
- constants.php +1 -1
- lib/model/import/class-ai1wm-import-database.php +6 -5
- readme.txt +9 -8
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: 7.
|
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: 7.48
|
9 |
* Text Domain: all-in-one-wp-migration
|
10 |
* Domain Path: /languages
|
11 |
* Network: True
|
constants.php
CHANGED
@@ -35,7 +35,7 @@ define( 'AI1WM_DEBUG', false );
|
|
35 |
// ==================
|
36 |
// = Plugin Version =
|
37 |
// ==================
|
38 |
-
define( 'AI1WM_VERSION', '7.
|
39 |
|
40 |
// ===============
|
41 |
// = Plugin Name =
|
35 |
// ==================
|
36 |
// = Plugin Version =
|
37 |
// ==================
|
38 |
+
define( 'AI1WM_VERSION', '7.48' );
|
39 |
|
40 |
// ===============
|
41 |
// = Plugin Name =
|
lib/model/import/class-ai1wm-import-database.php
CHANGED
@@ -915,11 +915,12 @@ class Ai1wm_Import_Database {
|
|
915 |
$new_table_prefixes[] = ai1wm_table_prefix() . $table_name;
|
916 |
}
|
917 |
|
918 |
-
//
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
|
|
923 |
}
|
924 |
|
925 |
// Set base table prefixes
|
915 |
$new_table_prefixes[] = ai1wm_table_prefix() . $table_name;
|
916 |
}
|
917 |
|
918 |
+
// Set BuddyPress table prefixes
|
919 |
+
if ( ai1wm_validate_plugin_basename( 'buddyboss-platform/bp-loader.php' ) || ai1wm_validate_plugin_basename( 'buddypress/bp-loader.php' ) ) {
|
920 |
+
foreach ( array( 'signups', 'bp_activity', 'bp_activity_meta', 'bp_friends', 'bp_groups', 'bp_groups_groupmeta', 'bp_groups_members', 'bp_invitations', 'bp_messages_messages', 'bp_messages_meta', 'bp_messages_notices', 'bp_messages_recipients', 'bp_notifications', 'bp_notifications_meta', 'bp_optouts', 'bp_user_blogs', 'bp_user_blogs_blogmeta', 'bp_xprofile_data', 'bp_xprofile_fields', 'bp_xprofile_groups', 'bp_xprofile_meta' ) as $table_name ) {
|
921 |
+
$old_table_prefixes[] = ai1wm_servmask_prefix( 'mainsite' ) . $table_name;
|
922 |
+
$new_table_prefixes[] = ai1wm_table_prefix() . $table_name;
|
923 |
+
}
|
924 |
}
|
925 |
|
926 |
// Set base table prefixes
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: move, transfer, copy, migrate, backup, clone, restore, db migration, wordp
|
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 5.8
|
6 |
Requires PHP: 5.2.17
|
7 |
-
Stable tag: 7.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
|
@@ -30,6 +30,7 @@ If you have WordPress version between 3.3 and 5.8.1 and PHP version between 5.2.
|
|
30 |
|
31 |
* Supports custom uploads, plugins, theme folders, and more.
|
32 |
* Available in over 50 language translations - including Japanese.
|
|
|
33 |
* No limitations on host or operating system.
|
34 |
* Supports a vast range of hosting providers -- [click here for a full list of supported providers.](https://help.servmask.com/knowledgebase/supported-hosting-providers/)
|
35 |
* A long list of [premium extensions](https://servmask.com/products) that gives you the power to do more.
|
@@ -44,7 +45,8 @@ Here are other reasons to use All-in-One WP Migration ...
|
|
44 |
|
45 |
**Trusted by the Government and Big Corporations:**
|
46 |
|
47 |
-
Many enterprise customers, government organizations, and universities use,
|
|
|
48 |
This broad adoption and usage of All-in-One WP Migration demonstrate how **safe, reliable and adaptable** the plugin is for just about any website migration need.
|
49 |
|
50 |
**Full Compatibility and Support:**
|
@@ -87,6 +89,11 @@ All-in-One WP Migration is in full compliance with General Data Protection Regul
|
|
87 |
See our [GDPR Compliant Privacy Policy here](https://www.iubenda.com/privacy-policy/946881).
|
88 |
|
89 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
90 |
= 7.47 =
|
91 |
**Added**
|
92 |
|
@@ -148,9 +155,3 @@ See our [GDPR Compliant Privacy Policy here](https://www.iubenda.com/privacy-pol
|
|
148 |
**Added**
|
149 |
|
150 |
* Improved MySQL error handling
|
151 |
-
|
152 |
-
= 7.37 =
|
153 |
-
**Added**
|
154 |
-
|
155 |
-
* Improved detection of pretty permalink support
|
156 |
-
* Improved DB error handling
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 5.8
|
6 |
Requires PHP: 5.2.17
|
7 |
+
Stable tag: 7.48
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
|
30 |
|
31 |
* Supports custom uploads, plugins, theme folders, and more.
|
32 |
* Available in over 50 language translations - including Japanese.
|
33 |
+
* Accessible for individuals with disabilities (WCAG 2.1 AA Level compliant)
|
34 |
* No limitations on host or operating system.
|
35 |
* Supports a vast range of hosting providers -- [click here for a full list of supported providers.](https://help.servmask.com/knowledgebase/supported-hosting-providers/)
|
36 |
* A long list of [premium extensions](https://servmask.com/products) that gives you the power to do more.
|
45 |
|
46 |
**Trusted by the Government and Big Corporations:**
|
47 |
|
48 |
+
Many enterprise customers, government organizations, and universities use,
|
49 |
+
love, and trust All-in-One WP Migration. Here are some: Boeing, NASA, VW, IBM, Harvard University, Stanford University, Lego, P&G, Automattic, State of California, State of Hawaii.
|
50 |
This broad adoption and usage of All-in-One WP Migration demonstrate how **safe, reliable and adaptable** the plugin is for just about any website migration need.
|
51 |
|
52 |
**Full Compatibility and Support:**
|
89 |
See our [GDPR Compliant Privacy Policy here](https://www.iubenda.com/privacy-policy/946881).
|
90 |
|
91 |
== Changelog ==
|
92 |
+
= 7.48 =
|
93 |
+
**Added**
|
94 |
+
|
95 |
+
* Support for BuddyPress plugin
|
96 |
+
|
97 |
= 7.47 =
|
98 |
**Added**
|
99 |
|
155 |
**Added**
|
156 |
|
157 |
* Improved MySQL error handling
|
|
|
|
|
|
|
|
|
|
|
|