All-in-One WP Migration - Version 7.10

Version Description

Added

  • Better support for WP Engine platform
Download this release

Release Info

Developer bangelov
Plugin Icon 128x128 All-in-One WP Migration
Version 7.10
Comparing to
See all releases

Code changes from version 7.9 to 7.10

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
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.10
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.9' );
39
 
40
  // ===============
41
  // = Plugin Name =
@@ -207,6 +207,21 @@ define( 'AI1WM_WP_STACK_CACHE_NAME', 'wp-stack-cache.php' );
207
  // ===========================
208
  define( 'AI1WM_WP_COMSH_LOADER_NAME', 'wpcomsh-loader.php' );
209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  // ===================
211
  // = Export Log Name =
212
  // ===================
35
  // ==================
36
  // = Plugin Version =
37
  // ==================
38
+ define( 'AI1WM_VERSION', '7.10' );
39
 
40
  // ===============
41
  // = Plugin Name =
207
  // ===========================
208
  define( 'AI1WM_WP_COMSH_LOADER_NAME', 'wpcomsh-loader.php' );
209
 
210
+ // ================================
211
+ // = WP Engine System Plugin Name =
212
+ // ================================
213
+ define( 'AI1WM_WP_ENGINE_SYSTEM_PLUGIN_NAME', 'mu-plugin.php' );
214
+
215
+ // ===========================
216
+ // = WPE Sign On Plugin Name =
217
+ // ===========================
218
+ define( 'AI1WM_WPE_SIGN_ON_PLUGIN_NAME', 'wpe-wp-sign-on-plugin.php' );
219
+
220
+ // ===================================
221
+ // = WP Engine Security Auditor Name =
222
+ // ===================================
223
+ define( 'AI1WM_WP_ENGINE_SECURITY_AUDITOR_NAME', 'wpengine-security-auditor.php' );
224
+
225
  // ===================
226
  // = Export Log Name =
227
  // ===================
lib/model/import/class-ai1wm-import-mu-plugins.php CHANGED
@@ -41,6 +41,9 @@ class Ai1wm_Import_Mu_Plugins {
41
  AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_GD_SYSTEM_PLUGIN_NAME,
42
  AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_WP_STACK_CACHE_NAME,
43
  AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_WP_COMSH_LOADER_NAME,
 
 
 
44
  );
45
 
46
  // Open the archive file for reading
41
  AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_GD_SYSTEM_PLUGIN_NAME,
42
  AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_WP_STACK_CACHE_NAME,
43
  AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_WP_COMSH_LOADER_NAME,
44
+ AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_WP_ENGINE_SYSTEM_PLUGIN_NAME,
45
+ AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_WPE_SIGN_ON_PLUGIN_NAME,
46
+ AI1WM_MUPLUGINS_NAME . DIRECTORY_SEPARATOR . AI1WM_WP_ENGINE_SECURITY_AUDITOR_NAME,
47
  );
48
 
49
  // Open the archive file for reading
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.3
6
  Requires PHP: 5.2.17
7
- Stable tag: 7.9
8
  License: GPLv2 or later
9
 
10
  Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
@@ -72,7 +72,6 @@ Mobile device compatible: All in One WP Plugin is the first plugin to offer true
72
  * Bluehost
73
  * InMotion
74
  * Web Hosting Hub
75
- * Siteground
76
  * Pagely
77
  * Dreamhost
78
  * Justhost
@@ -109,6 +108,11 @@ Alternatively you can download the plugin using the download button on this page
109
  All-in-One WP Migration **asks for your consent** to collect **requester's email address** when filling plugin's contact form. [GDPR Compliant Privacy Policy](https://www.iubenda.com/privacy-policy/946881)
110
 
111
  == Changelog ==
 
 
 
 
 
112
  = 7.9 =
113
  **Added**
114
 
4
  Requires at least: 3.3
5
  Tested up to: 5.3
6
  Requires PHP: 5.2.17
7
+ Stable tag: 7.10
8
  License: GPLv2 or later
9
 
10
  Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
72
  * Bluehost
73
  * InMotion
74
  * Web Hosting Hub
 
75
  * Pagely
76
  * Dreamhost
77
  * Justhost
108
  All-in-One WP Migration **asks for your consent** to collect **requester's email address** when filling plugin's contact form. [GDPR Compliant Privacy Policy](https://www.iubenda.com/privacy-policy/946881)
109
 
110
  == Changelog ==
111
+ = 7.10 =
112
+ **Added**
113
+
114
+ * Better support for WP Engine platform
115
+
116
  = 7.9 =
117
  **Added**
118