All-in-One WP Migration - Version 3.6

Version Description

  • Fixed undefined constant warnings
Download this release

Release Info

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

Code changes from version 3.5 to 3.6

Files changed (3) hide show
  1. all-in-one-wp-migration.php +1 -1
  2. constants.php +8 -8
  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: 3.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: 3.6
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.5' );
42
 
43
  // ===============
44
  // = Plugin Name =
@@ -230,7 +230,7 @@ define( 'AI1WM_BACKUPS_INDEX', AI1WM_BACKUPS_PATH . DIRECTORY_SEPARATOR . 'index
230
  // ====================================
231
  // = WP Migration Plugin Base Dir =
232
  // ====================================
233
- if ( defined( AI1WM_PLUGIN_BASENAME ) ) {
234
  define( 'AI1WM_PLUGIN_BASEDIR', dirname( AI1WM_PLUGIN_BASENAME ) );
235
  } else {
236
  define( 'AI1WM_PLUGIN_BASEDIR', 'all-in-one-wp-migration' );
@@ -239,7 +239,7 @@ if ( defined( AI1WM_PLUGIN_BASENAME ) ) {
239
  // ==============================
240
  // = Dropbox Extension Base Dir =
241
  // ==============================
242
- if ( defined( AI1WMDE_PLUGIN_BASENAME ) ) {
243
  define( 'AI1WMDE_PLUGIN_BASEDIR', dirname( AI1WMDE_PLUGIN_BASENAME ) );
244
  } else {
245
  define( 'AI1WMDE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-dropbox-extension' );
@@ -248,7 +248,7 @@ if ( defined( AI1WMDE_PLUGIN_BASENAME ) ) {
248
  // ===================================
249
  // = Google Drive Extension Base Dir =
250
  // ===================================
251
- if ( defined( AI1WMGE_PLUGIN_BASENAME ) ) {
252
  define( 'AI1WMGE_PLUGIN_BASEDIR', dirname( AI1WMGE_PLUGIN_BASENAME ) );
253
  } else {
254
  define( 'AI1WMGE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-gdrive-extension' );
@@ -257,7 +257,7 @@ if ( defined( AI1WMGE_PLUGIN_BASENAME ) ) {
257
  // ================================
258
  // = Amazon S3 Extension Base Dir =
259
  // ================================
260
- if ( defined( AI1WMSE_PLUGIN_BASENAME ) ) {
261
  define( 'AI1WMSE_PLUGIN_BASEDIR', dirname( AI1WMSE_PLUGIN_BASENAME ) );
262
  } else {
263
  define( 'AI1WMSE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-s3-extension' );
@@ -266,7 +266,7 @@ if ( defined( AI1WMSE_PLUGIN_BASENAME ) ) {
266
  // ================================
267
  // = Multisite Extension Base Dir =
268
  // ================================
269
- if ( defined( AI1WMME_PLUGIN_BASENAME ) ) {
270
  define( 'AI1WMME_PLUGIN_BASEDIR', dirname( AI1WMME_PLUGIN_BASENAME ) );
271
  } else {
272
  define( 'AI1WMME_PLUGIN_BASEDIR', 'all-in-one-wp-migration-multisite-extension' );
@@ -275,7 +275,7 @@ if ( defined( AI1WMME_PLUGIN_BASENAME ) ) {
275
  // ================================
276
  // = Unlimited Extension Base Dir =
277
  // ================================
278
- if ( defined( AI1WMUE_PLUGIN_BASENAME ) ) {
279
  define( 'AI1WMUE_PLUGIN_BASEDIR', dirname( AI1WMUE_PLUGIN_BASENAME ) );
280
  } else {
281
  define( 'AI1WMUE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-unlimited-extension' );
@@ -284,7 +284,7 @@ if ( defined( AI1WMUE_PLUGIN_BASENAME ) ) {
284
  // ==========================
285
  // = FTP Extension Base Dir =
286
  // ==========================
287
- if ( defined( AI1WMFE_PLUGIN_BASENAME ) ) {
288
  define( 'AI1WMFE_PLUGIN_BASEDIR', dirname( AI1WMFE_PLUGIN_BASENAME ) );
289
  } else {
290
  define( 'AI1WMFE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-ftp-extension' );
38
  // ==================
39
  // = Plugin Version =
40
  // ==================
41
+ define( 'AI1WM_VERSION', '3.6' );
42
 
43
  // ===============
44
  // = Plugin Name =
230
  // ====================================
231
  // = WP Migration Plugin Base Dir =
232
  // ====================================
233
+ if ( defined( 'AI1WM_PLUGIN_BASENAME' ) ) {
234
  define( 'AI1WM_PLUGIN_BASEDIR', dirname( AI1WM_PLUGIN_BASENAME ) );
235
  } else {
236
  define( 'AI1WM_PLUGIN_BASEDIR', 'all-in-one-wp-migration' );
239
  // ==============================
240
  // = Dropbox Extension Base Dir =
241
  // ==============================
242
+ if ( defined( 'AI1WMDE_PLUGIN_BASENAME' ) ) {
243
  define( 'AI1WMDE_PLUGIN_BASEDIR', dirname( AI1WMDE_PLUGIN_BASENAME ) );
244
  } else {
245
  define( 'AI1WMDE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-dropbox-extension' );
248
  // ===================================
249
  // = Google Drive Extension Base Dir =
250
  // ===================================
251
+ if ( defined( 'AI1WMGE_PLUGIN_BASENAME' ) ) {
252
  define( 'AI1WMGE_PLUGIN_BASEDIR', dirname( AI1WMGE_PLUGIN_BASENAME ) );
253
  } else {
254
  define( 'AI1WMGE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-gdrive-extension' );
257
  // ================================
258
  // = Amazon S3 Extension Base Dir =
259
  // ================================
260
+ if ( defined( 'AI1WMSE_PLUGIN_BASENAME' ) ) {
261
  define( 'AI1WMSE_PLUGIN_BASEDIR', dirname( AI1WMSE_PLUGIN_BASENAME ) );
262
  } else {
263
  define( 'AI1WMSE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-s3-extension' );
266
  // ================================
267
  // = Multisite Extension Base Dir =
268
  // ================================
269
+ if ( defined( 'AI1WMME_PLUGIN_BASENAME' ) ) {
270
  define( 'AI1WMME_PLUGIN_BASEDIR', dirname( AI1WMME_PLUGIN_BASENAME ) );
271
  } else {
272
  define( 'AI1WMME_PLUGIN_BASEDIR', 'all-in-one-wp-migration-multisite-extension' );
275
  // ================================
276
  // = Unlimited Extension Base Dir =
277
  // ================================
278
+ if ( defined( 'AI1WMUE_PLUGIN_BASENAME' ) ) {
279
  define( 'AI1WMUE_PLUGIN_BASEDIR', dirname( AI1WMUE_PLUGIN_BASENAME ) );
280
  } else {
281
  define( 'AI1WMUE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-unlimited-extension' );
284
  // ==========================
285
  // = FTP Extension Base Dir =
286
  // ==========================
287
+ if ( defined( 'AI1WMFE_PLUGIN_BASENAME' ) ) {
288
  define( 'AI1WMFE_PLUGIN_BASEDIR', dirname( AI1WMFE_PLUGIN_BASENAME ) );
289
  } else {
290
  define( 'AI1WMFE_PLUGIN_BASEDIR', 'all-in-one-wp-migration-ftp-extension' );
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.2
6
- Stable tag: 3.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.
@@ -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.5 =
61
  * Exclude core plugin and extensions on export if they have custom names
62
 
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.6
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.6 =
61
+ * Fixed undefined constant warnings
62
+
63
  = 3.5 =
64
  * Exclude core plugin and extensions on export if they have custom names
65