Version Description
- Fixed a bug when exporting WordPress plugins directory
Download this release
Release Info
Developer | bangelov |
Plugin | ![]() |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0 to 1.7.1
- all-in-one-wp-migration.php +1 -1
- constants.php +1 -1
- lib/model/class-ai1wm-export.php +8 -5
- readme.txt +4 -1
all-in-one-wp-migration.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Migration tool for all your blog data
|
6 |
* Author: ServMask
|
7 |
* Author URI: http://servmask.com/
|
8 |
-
* Version: 1.7.
|
9 |
*
|
10 |
* Copyright (C) 2013 ServMask LLC
|
11 |
*
|
5 |
* Description: Migration tool for all your blog data
|
6 |
* Author: ServMask
|
7 |
* Author URI: http://servmask.com/
|
8 |
+
* Version: 1.7.1
|
9 |
*
|
10 |
* Copyright (C) 2013 ServMask LLC
|
11 |
*
|
constants.php
CHANGED
@@ -26,7 +26,7 @@
|
|
26 |
// ==================
|
27 |
// = Plugin VERSION =
|
28 |
// ==================
|
29 |
-
define( 'AI1WM_VERSION', '1.7.
|
30 |
|
31 |
// ===============
|
32 |
// = Plugin Name =
|
26 |
// ==================
|
27 |
// = Plugin VERSION =
|
28 |
// ==================
|
29 |
+
define( 'AI1WM_VERSION', '1.7.1' );
|
30 |
|
31 |
// ===============
|
32 |
// = Plugin Name =
|
lib/model/class-ai1wm-export.php
CHANGED
@@ -61,6 +61,7 @@ class Ai1wm_Export
|
|
61 |
$options['plugin_version'] = AI1WM_VERSION;
|
62 |
$options['wp_version'] = $wp_version;
|
63 |
$options['php_version'] = phpversion();
|
|
|
64 |
$options['ZipArchive'] = class_exists( 'ZipArchive' ) ? 1 : 0;
|
65 |
$options['ZLIB_installed'] = function_exists( 'gzopen' ) ? 1 : 0;
|
66 |
$options['PDO_available'] = class_exists( 'PDO' ) ? 1 : 0;
|
@@ -105,11 +106,13 @@ class Ai1wm_Export
|
|
105 |
|
106 |
// Should we export plugins?
|
107 |
if ( ! isset( $options['export-plugins'] ) ) {
|
108 |
-
$
|
109 |
-
$
|
110 |
-
|
111 |
-
|
112 |
-
|
|
|
|
|
113 |
}
|
114 |
|
115 |
// Add package
|
61 |
$options['plugin_version'] = AI1WM_VERSION;
|
62 |
$options['wp_version'] = $wp_version;
|
63 |
$options['php_version'] = phpversion();
|
64 |
+
$options['php_uname'] = php_uname();
|
65 |
$options['ZipArchive'] = class_exists( 'ZipArchive' ) ? 1 : 0;
|
66 |
$options['ZLIB_installed'] = function_exists( 'gzopen' ) ? 1 : 0;
|
67 |
$options['PDO_available'] = class_exists( 'PDO' ) ? 1 : 0;
|
106 |
|
107 |
// Should we export plugins?
|
108 |
if ( ! isset( $options['export-plugins'] ) ) {
|
109 |
+
if ( ( $include = $this->get_plugins( array( AI1WM_PLUGIN_NAME ) ) ) ) {
|
110 |
+
$archive->addDir(
|
111 |
+
$this->prepare_plugins( $options ),
|
112 |
+
self::EXPORT_PLUGINS_NAME,
|
113 |
+
$include
|
114 |
+
);
|
115 |
+
}
|
116 |
}
|
117 |
|
118 |
// Add package
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: yani.iliev, bangelov, mirkov
|
|
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: 3.9
|
6 |
-
Stable tag: 1.7.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
All-in-One WP Migration is the only tools that you will ever needs when you need to perform site migration of your WordPress blog.
|
@@ -70,6 +70,9 @@ All in One WP Plugin is the first plugin to offer true mobile experience on Word
|
|
70 |
3. Plugin Menu
|
71 |
|
72 |
== Changelog ==
|
|
|
|
|
|
|
73 |
= 1.7.0 =
|
74 |
* Added storage layer to avoid permission issues with OS's directory used for temporary storage
|
75 |
* Added additional checks to verify the consistency of the imported archive
|
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: 3.9
|
6 |
+
Stable tag: 1.7.1
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
All-in-One WP Migration is the only tools that you will ever needs when you need to perform site migration of your WordPress blog.
|
70 |
3. Plugin Menu
|
71 |
|
72 |
== Changelog ==
|
73 |
+
= 1.7.1 =
|
74 |
+
* Fixed a bug when exporting WordPress plugins directory
|
75 |
+
|
76 |
= 1.7.0 =
|
77 |
* Added storage layer to avoid permission issues with OS's directory used for temporary storage
|
78 |
* Added additional checks to verify the consistency of the imported archive
|