WP Clone by WP Academy - Version 2.2.9

Version Description

  • Updated feedback version
  • Updated migration texts
Download this release

Release Info

Developer nick843
Plugin Icon 128x128 WP Clone by WP Academy
Version 2.2.9
Comparing to
See all releases

Code changes from version 2.2.8 to 2.2.9

Files changed (4) hide show
  1. analyst/src/Account/Account.php +4 -24
  2. analyst/version.php +1 -1
  3. readme.txt +182 -178
  4. wpclone.php +2 -2
analyst/src/Account/Account.php CHANGED
@@ -246,14 +246,9 @@ class Account implements TrackerContract
246
  $question = isset($_POST['question']) ? stripslashes($_POST['question']) : null;
247
  $reason = isset($_POST['reason']) ? stripslashes($_POST['reason']) : null;
248
 
249
- $response = DeactivateRequest::make($this->collector, $this->id, $this->path, $question, $reason)
250
  ->execute($this->requestor);
251
 
252
- // Exit if request failed
253
- if (!$response->isSuccess()) {
254
- wp_send_json_error($response->body);
255
- }
256
-
257
  $this->setIsInstalled(false);
258
 
259
  AccountDataFactory::syncData();
@@ -268,12 +263,7 @@ class Account implements TrackerContract
268
  */
269
  public function onOptInListener()
270
  {
271
- $response = OptInRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
272
-
273
- // Exit if request failed
274
- if (!$response->isSuccess()) {
275
- wp_send_json_error($response->body);
276
- }
277
 
278
  $this->setIsOptedIn(true);
279
 
@@ -289,12 +279,7 @@ class Account implements TrackerContract
289
  */
290
  public function onOptOutListener()
291
  {
292
- $response = OptOutRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
293
-
294
- // Exit if request failed
295
- if (!$response->isSuccess()) {
296
- wp_send_json_error($response->body);
297
- }
298
 
299
  $this->setIsOptedIn(false);
300
 
@@ -318,12 +303,7 @@ class Account implements TrackerContract
318
  $this->setIsInstallResolved(true);
319
  $cache->delete('plugin_to_install');
320
 
321
- $response = InstallRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
322
-
323
- // Exit if request failed
324
- if (!$response->isSuccess()) {
325
- wp_send_json_error($response->body);
326
- }
327
 
328
  $this->setIsSigned(true);
329
 
246
  $question = isset($_POST['question']) ? stripslashes($_POST['question']) : null;
247
  $reason = isset($_POST['reason']) ? stripslashes($_POST['reason']) : null;
248
 
249
+ DeactivateRequest::make($this->collector, $this->id, $this->path, $question, $reason)
250
  ->execute($this->requestor);
251
 
 
 
 
 
 
252
  $this->setIsInstalled(false);
253
 
254
  AccountDataFactory::syncData();
263
  */
264
  public function onOptInListener()
265
  {
266
+ OptInRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
 
 
 
 
 
267
 
268
  $this->setIsOptedIn(true);
269
 
279
  */
280
  public function onOptOutListener()
281
  {
282
+ OptOutRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
 
 
 
 
 
283
 
284
  $this->setIsOptedIn(false);
285
 
303
  $this->setIsInstallResolved(true);
304
  $cache->delete('plugin_to_install');
305
 
306
+ InstallRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
 
 
 
 
 
307
 
308
  $this->setIsSigned(true);
309
 
analyst/version.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  return array(
4
  // The sdk version
5
- 'sdk' => '1.3.28',
6
 
7
  // Minimum supported WordPress version
8
  'wp' => '4.7',
2
 
3
  return array(
4
  // The sdk version
5
+ 'sdk' => '1.3.30',
6
 
7
  // Minimum supported WordPress version
8
  'wp' => '4.7',
readme.txt CHANGED
@@ -1,179 +1,183 @@
1
- === Clone Migration ===
2
- Contributors: wpacademy, migrate, nick843
3
- Donate link: https://sellcodes.com/q1OGuSox
4
- Tags: migrate, clone, backup, migration, backups, copy, restore, recover, restoration, duplicate
5
- Author URI: http://wpacademy.com
6
- Requires PHP: 5.5
7
- Requires at least: 3.3
8
- Tested up to: 5.2.4
9
- Stable tag: 2.2.8
10
- License: GPLv3
11
- License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
12
-
13
-
14
- 100% FREE clone and migration
15
-
16
- == Description ==
17
-
18
- = WP Clone is back! =
19
-
20
- Or, to be precise: we **want** it to come back!
21
-
22
- After 3 years of neglection we believe it's time for a revival. New contributors got added to the plugin, and with it comes new motivation to make it the best backup solution on the market!
23
-
24
- By that, we mean:
25
-
26
- - Finally make it work in all cases
27
- - Add more features, but **keep the simplicity**
28
- - Get user trust back by delivering a top service!
29
-
30
- But to achieve that…
31
-
32
- = We need your help! =
33
-
34
- Good development takes time & money, and we need your support.
35
-
36
- We decided to [crowdfund it](https://sellcodes.com/q1OGuSox), meaning:
37
-
38
- - **Contributions of 5-10 USD**: Feel great by giving a sincere "Thank you" and helping us to develop the plugin further. If the plugin made your life easier in the past, it's a great opportunity to show some appreciation :)
39
- - **Contributions of 15 USD**: As in 1.), plus you'll get a free premium license (for the premium plugin which we will create*). A contribution of 30 USD gets you 2 licenses.
40
- - **Contributions of 50 USD** (or more): As in 1), plus you'll get an unlimited websites premium license. This a fantastic, one-time deal. The plugin will provide many more features - such as backup scheduling, backup to external servers etc. - while still being super-easy to use!
41
-
42
- All licenses are lifetime licenses and valid on both commercial and non-commercial websites.
43
-
44
- *We will create the premium plugin only if we reach our (quite modest) crowdfunding goal of 3,000 USD. If we don't hit it, you'll get your contributions refunded (except the 5 and 10 USD amounts - those are basically for the past :).
45
-
46
- Please help us out, and see the status quo of our crowdfunding effort, on the [WP clone crowdfunding page](https://sellcodes.com/q1OGuSox)!
47
-
48
- = Where do we stand today? =
49
-
50
- But first, let’s back up ;) - where does the (free) plugin stand now?
51
-
52
- WP Clone is still the easiest, fastest, cheapest and most secure way to backup, migrate or clone a WordPress site to another domain or hosting server.
53
-
54
- You can also use it to backup, migrate or clone your site to/from local server hosting, to create backup of your site for development or testing purposes, and to install pre-configured backups of WordPress.
55
-
56
- WP Clone is a superior to other backup & migrate plugins for the following reasons:
57
-
58
- * It does not require FTP access to backup files you migrate or clone, neither the source or destination site; just install a new WordPress on the destination site, install our backup plugin, and follow the prompts to migrate or clone your site.
59
- * It does not backup or restore the WordPress system files (it just creates user content and database backups); reducing upload time for migration and improving security of your site
60
- * It fetches the site backup via your host's direct http connection, which saves you from having to upload large backup files, making it easier to migrate.
61
-
62
- = What are today's limitations? =
63
-
64
- Today:
65
-
66
- - 90% of cases: Backups & migrations work flawlessly (we fixed some key bugs in the most recent version)
67
- - 9% of cases: Backups or migrations fail due to your hoster's configurations (most likely limits in up- and downloads) which is typically the case when you backup or migrate very large sites. However, there's a workaround: simply do a “Database Only” backup (use “Advanced Settings”), transfer the wp-content directory over with FTP, and then restore new site. Then backup and migration also works.
68
- - 1% of cases: Your site/hosting is abnormal (pardon our French) and backup or migration doesn't work. However: that's what we'll now be working on, so that eventually backups and migrations will work in all cases.
69
-
70
- The 1% case means:
71
-
72
- - Basic rule: DO NOT use it as your only backup solution! Only use it for migrations (so that if something fails, you still have the files on your old site as backup).
73
- - If you want to use it as backup, test it by restoring the backup file on a new site. If that works fine you should be safe.
74
- - In any case, we cannot take any responsibility if backup or migration fails.
75
-
76
- Note:
77
- * There is never an issue in damaging the source installation (i.e. on the site where you create the backup). So backup sites at your pleasure. If your backup succeeds then chances are good that the migration (i.e. restore on another site) will also succeed. But don't take any chances.
78
- * If backup or migration (restore) fails, just try it again. Often it works on second attempt.
79
-
80
- = Other tips how to backup and migrate =
81
-
82
- * NEVER overwrite an installation for which you do not have an alternate backup source (e.g. a cPanel backup). Normally you would restore the backup onto a fresh WP installation on another host or on a subdomain. If the restore fails your destination site might become unusable, so be prepared to enter cPanel and then destroy / recreate the new installation if necessary.
83
- * DO NOT use our backup plugin on WP Engine or any hosting system with proprietary operating system. Instead, use their built-in backup tools.
84
- * Large sites (>2GB) might take as long as an hour to backup and migrate. Sites of 250 MB or less should take no more than a minute or two to backup, depending on your server.
85
- * We recommend you deactivate and delete page caching, security and maybe redirection plugins before you migrate, and re-install them on the new site, if necessary. In general, delete all unnecessary plugins and data from your site before you backup. You can also use the "Exclude directories" option if you have large media files, which you can then copy back to the new site with FTP.
86
- * How to copy from local server to your hosted website: Create a backup of the local site in the usual way, then save the backup file (right-click > Save) to your local disk. Upload this file to the root directory of your destination website and then use this url in the “Restore” dialog of the new site: http://yourdomain.com/<name of the backup file.zip>.
87
-
88
- = Help Video =
89
-
90
-
91
- (Old video, but may still be helpful; we’ll replace it with an updated one soon)
92
-
93
- [youtube http://www.youtube.com/watch?v=xN5Ffhyn4Ao]
94
-
95
- = Credits =
96
- WP Backup uses functions from the "Safe Search and Replace on Database with Serialized Data" script first written by David Coveney of Interconnect IT Ltd (UK) http://www.davidcoveney.com or http://www.interconnectit.com and released under the WTFPL http://sam.zoy.org/wtfpl/. Partial script with full changelog is placed inside 'lib/files' directory.
97
-
98
- Thank you for reading this far. Please don’t forget to [contribute to create a kick-ass plugin](https://sellcodes.com/q1OGuSox). Thank you!
99
- == Installation ==
100
-
101
- 1. Navigate to Plugins > Add New
102
- 2. Search for "WP Clone by WP Academy"
103
- 3. Install and activate the backup and migration plugin
104
- 4. Follow remaining instructions in the help video
105
-
106
- == Frequently Asked Questions ==
107
- Backup and migration FAQ are under construction
108
-
109
- == Changelog ==
110
-
111
- = 2.2.8 =
112
- * Updated migration texts
113
-
114
- = 2.2.7 =
115
- * Updated backup plugin pic
116
- * Updated backup texts
117
-
118
- = 2.2.6 =
119
- * Integrated feedback system
120
-
121
- = 2.2.5 =
122
- * Major bug that % got hashed fixed
123
- * Other basic bug fixes (e.g. backups and migrations didn’t work on new domains)
124
- * Texts in plugin updated, broken links removed
125
-
126
- = 2.2.4 =
127
- * Updated: `Tested up to` tag for backup and migration
128
-
129
- = 2.2.3 =
130
- * Added: PHP7 support of backup and migration
131
- * Added: a multisite check during restore (not required at time of backup)
132
- * Fixed: failed backups due to unreadable files
133
-
134
- = 2.2.1 =
135
- * Fixed: Backup names will use the time zone selected in general settings
136
- * Added: basic backup and migration logs
137
- * Added: An option to exclude files in backup and migration based on size (files larger than 25MB will be excluded by default for backups and migration)
138
- * Added: An option to ignore the wordpress table prefix during backup and migration
139
- * Added: An option to check the mysql connection during migration (restore)
140
- * Changed: Files are no longer copied to a temporary location during backup
141
- * Changed: siteurl option is updated during the database import
142
-
143
- = 2.2 =
144
- * Fixed: Missing backups that some users encountered after upgrading to 2.1.9
145
- * Added: An option to refresh the backup list
146
- * Added: An option to remove the database entry and delete all the backup files
147
- * Added: A section that shows the uncompressed database size and the uncompressed size and the number of files that will be archived during a full backup
148
- * Added: Notes in the advanced settings section regarding the Maximum memory limit and the Script backup execution time fields.
149
- * Added: The report returned from the search and replace process into the restore successful page
150
- * Changed: Moved the backup list location from the custom table to the wp_options table. (previous backups will be imported and the custom table will be removed on existing installations)
151
- * Changed: Only the tables with the wordpress table prefix will be altered during a restore
152
- * Changed: Only the tables with the wordpress table prefix will be saved during a backup
153
- * Changed: Backup deletion is now handled using AJAX
154
-
155
- = 2.1.6 =
156
- * Added: An option to exclude specific directories during backup
157
- * Added: An option to only backup the database
158
- * Changed: File operations during backup are now handled directly instead of using the WP filesystem abstraction class
159
-
160
- = 2.1.4 =
161
- * Fixed: When javascript is disabled,submit button shows "Create Backup" but the plugin attempts to do a restore
162
- * Changed: The temporary directory location during the backup restore process from '/wp-content/' to '/wp-content/wpclone-temp/'
163
-
164
- = 2.1.3 =
165
- * Added: An option to backup the database using WordPress' WPDB class
166
- * Removed: The need to keep the original backup names intact
167
- * Changed: The backup name structure
168
- * Changed: Backup file downloads are now handled using WP core functions
169
-
170
- = 2.0.2 =
171
- * Initial release
172
-
173
-
174
- == Screenshots ==
175
- 1. Configuration Page
176
-
177
- == Upgrade Notice ==
178
- = 2.2.8 =
 
 
 
 
179
  * Please upgrade!
1
+ === Clone ===
2
+ Contributors: wpacademy, migrate, nick843
3
+ Donate link: https://sellcodes.com/q1OGuSox
4
+ Tags: migrate, clone, backup, migration, backups, copy, restore, recover, restoration, duplicate
5
+ Author URI: http://wpacademy.com
6
+ Requires PHP: 5.5
7
+ Requires at least: 3.3
8
+ Tested up to: 5.3
9
+ Stable tag: 2.2.9
10
+ License: GPLv3
11
+ License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
12
+
13
+
14
+ 100% FREE clone and migration
15
+
16
+ == Description ==
17
+
18
+ = WP Clone is back! =
19
+
20
+ Or, to be precise: we **want** it to come back!
21
+
22
+ After 3 years of neglection we believe it's time for a revival. New contributors got added to the plugin, and with it comes new motivation to make it the best backup solution on the market!
23
+
24
+ By that, we mean:
25
+
26
+ - Finally make it work in all cases
27
+ - Add more features, but **keep the simplicity**
28
+ - Get user trust back by delivering a top service!
29
+
30
+ But to achieve that…
31
+
32
+ = We need your help! =
33
+
34
+ Good development takes time & money, and we need your support.
35
+
36
+ We decided to [crowdfund it](https://sellcodes.com/q1OGuSox), meaning:
37
+
38
+ - **Contributions of 5-10 USD**: Feel great by giving a sincere "Thank you" and helping us to develop the plugin further. If the plugin made your life easier in the past, it's a great opportunity to show some appreciation :)
39
+ - **Contributions of 15 USD**: As in 1.), plus you'll get a free premium license (for the premium plugin which we will create*). A contribution of 30 USD gets you 2 licenses.
40
+ - **Contributions of 50 USD** (or more): As in 1), plus you'll get an unlimited websites premium license. This a fantastic, one-time deal. The plugin will provide many more features - such as backup scheduling, backup to external servers etc. - while still being super-easy to use!
41
+
42
+ All licenses are lifetime licenses and valid on both commercial and non-commercial websites.
43
+
44
+ *We will create the premium plugin only if we reach our (quite modest) crowdfunding goal of 3,000 USD. If we don't hit it, you'll get your contributions refunded (except the 5 and 10 USD amounts - those are basically for the past :).
45
+
46
+ Please help us out, and see the status quo of our crowdfunding effort, on the [WP clone crowdfunding page](https://sellcodes.com/q1OGuSox)!
47
+
48
+ = Where do we stand today? =
49
+
50
+ But first, let’s back up ;) - where does the (free) plugin stand now?
51
+
52
+ WP Clone is still the easiest, fastest, cheapest and most secure way to backup, migrate or clone a WordPress site to another domain or hosting server.
53
+
54
+ You can also use it to backup, migrate or clone your site to/from local server hosting, to create backup of your site for development or testing purposes, and to install pre-configured backups of WordPress.
55
+
56
+ WP Clone is a superior to other backup & migrate plugins for the following reasons:
57
+
58
+ * It does not require FTP access to backup files you migrate or clone, neither the source or destination site; just install a new WordPress on the destination site, install our backup plugin, and follow the prompts to migrate or clone your site.
59
+ * It does not backup or restore the WordPress system files (it just creates user content and database backups); reducing upload time for migration and improving security of your site
60
+ * It fetches the site backup via your host's direct http connection, which saves you from having to upload large backup files, making it easier to migrate.
61
+
62
+ = What are today's limitations? =
63
+
64
+ Today:
65
+
66
+ - 90% of cases: Backups & migrations work flawlessly (we fixed some key bugs in the most recent version)
67
+ - 9% of cases: Backups or migrations fail due to your hoster's configurations (most likely limits in up- and downloads) which is typically the case when you backup or migrate very large sites. However, there's a workaround: simply do a “Database Only” backup (use “Advanced Settings”), transfer the wp-content directory over with FTP, and then restore new site. Then backup and migration also works.
68
+ - 1% of cases: Your site/hosting is abnormal (pardon our French) and backup or migration doesn't work. However: that's what we'll now be working on, so that eventually backups and migrations will work in all cases.
69
+
70
+ The 1% case means:
71
+
72
+ - Basic rule: DO NOT use it as your only backup solution! Only use it for migrations (so that if something fails, you still have the files on your old site as backup).
73
+ - If you want to use it as backup, test it by restoring the backup file on a new site. If that works fine you should be safe.
74
+ - In any case, we cannot take any responsibility if backup or migration fails.
75
+
76
+ Note:
77
+ * There is never an issue in damaging the source installation (i.e. on the site where you create the backup). So backup sites at your pleasure. If your backup succeeds then chances are good that the migration (i.e. restore on another site) will also succeed. But don't take any chances.
78
+ * If backup or migration (restore) fails, just try it again. Often it works on second attempt.
79
+
80
+ = Other tips how to backup and migrate =
81
+
82
+ * NEVER overwrite an installation for which you do not have an alternate backup source (e.g. a cPanel backup). Normally you would restore the backup onto a fresh WP installation on another host or on a subdomain. If the restore fails your destination site might become unusable, so be prepared to enter cPanel and then destroy / recreate the new installation if necessary.
83
+ * DO NOT use our backup plugin on WP Engine or any hosting system with proprietary operating system. Instead, use their built-in backup tools.
84
+ * Large sites (>2GB) might take as long as an hour to backup and migrate. Sites of 250 MB or less should take no more than a minute or two to backup, depending on your server.
85
+ * We recommend you deactivate and delete page caching, security and maybe redirection plugins before you migrate, and re-install them on the new site, if necessary. In general, delete all unnecessary plugins and data from your site before you backup. You can also use the "Exclude directories" option if you have large media files, which you can then copy back to the new site with FTP.
86
+ * How to copy from local server to your hosted website: Create a backup of the local site in the usual way, then save the backup file (right-click > Save) to your local disk. Upload this file to the root directory of your destination website and then use this url in the “Restore” dialog of the new site: http://yourdomain.com/<name of the backup file.zip>.
87
+
88
+ = Help Video =
89
+
90
+
91
+ (Old video, but may still be helpful; we’ll replace it with an updated one soon)
92
+
93
+ [youtube http://www.youtube.com/watch?v=xN5Ffhyn4Ao]
94
+
95
+ = Credits =
96
+ WP Backup uses functions from the "Safe Search and Replace on Database with Serialized Data" script first written by David Coveney of Interconnect IT Ltd (UK) http://www.davidcoveney.com or http://www.interconnectit.com and released under the WTFPL http://sam.zoy.org/wtfpl/. Partial script with full changelog is placed inside 'lib/files' directory.
97
+
98
+ Thank you for reading this far. Please don’t forget to [contribute to create a kick-ass plugin](https://sellcodes.com/q1OGuSox). Thank you!
99
+ == Installation ==
100
+
101
+ 1. Navigate to Plugins > Add New
102
+ 2. Search for "WP Clone by WP Academy"
103
+ 3. Install and activate the backup and migration plugin
104
+ 4. Follow remaining instructions in the help video
105
+
106
+ == Frequently Asked Questions ==
107
+ Backup and migration FAQ are under construction
108
+
109
+ == Changelog ==
110
+
111
+ = 2.2.9 =
112
+ * Updated feedback version
113
+ * Updated migration texts
114
+
115
+ = 2.2.8 =
116
+ * Updated migration texts
117
+
118
+ = 2.2.7 =
119
+ * Updated backup plugin pic
120
+ * Updated backup texts
121
+
122
+ = 2.2.6 =
123
+ * Integrated feedback system
124
+
125
+ = 2.2.5 =
126
+ * Major bug that % got hashed fixed
127
+ * Other basic bug fixes (e.g. backups and migrations didn’t work on new domains)
128
+ * Texts in plugin updated, broken links removed
129
+
130
+ = 2.2.4 =
131
+ * Updated: `Tested up to` tag for backup and migration
132
+
133
+ = 2.2.3 =
134
+ * Added: PHP7 support of backup and migration
135
+ * Added: a multisite check during restore (not required at time of backup)
136
+ * Fixed: failed backups due to unreadable files
137
+
138
+ = 2.2.1 =
139
+ * Fixed: Backup names will use the time zone selected in general settings
140
+ * Added: basic backup and migration logs
141
+ * Added: An option to exclude files in backup and migration based on size (files larger than 25MB will be excluded by default for backups and migration)
142
+ * Added: An option to ignore the wordpress table prefix during backup and migration
143
+ * Added: An option to check the mysql connection during migration (restore)
144
+ * Changed: Files are no longer copied to a temporary location during backup
145
+ * Changed: siteurl option is updated during the database import
146
+
147
+ = 2.2 =
148
+ * Fixed: Missing backups that some users encountered after upgrading to 2.1.9
149
+ * Added: An option to refresh the backup list
150
+ * Added: An option to remove the database entry and delete all the backup files
151
+ * Added: A section that shows the uncompressed database size and the uncompressed size and the number of files that will be archived during a full backup
152
+ * Added: Notes in the advanced settings section regarding the Maximum memory limit and the Script backup execution time fields.
153
+ * Added: The report returned from the search and replace process into the restore successful page
154
+ * Changed: Moved the backup list location from the custom table to the wp_options table. (previous backups will be imported and the custom table will be removed on existing installations)
155
+ * Changed: Only the tables with the wordpress table prefix will be altered during a restore
156
+ * Changed: Only the tables with the wordpress table prefix will be saved during a backup
157
+ * Changed: Backup deletion is now handled using AJAX
158
+
159
+ = 2.1.6 =
160
+ * Added: An option to exclude specific directories during backup
161
+ * Added: An option to only backup the database
162
+ * Changed: File operations during backup are now handled directly instead of using the WP filesystem abstraction class
163
+
164
+ = 2.1.4 =
165
+ * Fixed: When javascript is disabled,submit button shows "Create Backup" but the plugin attempts to do a restore
166
+ * Changed: The temporary directory location during the backup restore process from '/wp-content/' to '/wp-content/wpclone-temp/'
167
+
168
+ = 2.1.3 =
169
+ * Added: An option to backup the database using WordPress' WPDB class
170
+ * Removed: The need to keep the original backup names intact
171
+ * Changed: The backup name structure
172
+ * Changed: Backup file downloads are now handled using WP core functions
173
+
174
+ = 2.0.2 =
175
+ * Initial release
176
+
177
+
178
+ == Screenshots ==
179
+ 1. Configuration Page
180
+
181
+ == Upgrade Notice ==
182
+ = 2.2.9 =
183
  * Please upgrade!
wpclone.php CHANGED
@@ -4,7 +4,7 @@ Plugin name: WP Clone by WP Academy
4
  Plugin URI: http://wpacademy.com/software/
5
  Description: Move or copy a WordPress site to another server or to another domain name, move to/from local server hosting, and backup sites.
6
  Author: WP Academy
7
- Version: 2.2.8
8
  Author URI: http://wpacademy.com/
9
  */
10
  require_once 'analyst/main.php';
@@ -543,7 +543,7 @@ function wpclone_admin_notice__success() {
543
  <ul style="margin-left: 30px;margin-top: 15px;">
544
  <li>
545
  a. <span class="sellcodes-quick-purchase" style="float: none;"><span style="text-decoration: underline; font-family: 'Montserrat', sans-serif;" class="sc-button" data-product-id="q1OGuSox" data-option-id="FgUPGiaV">Contribution of 5 or 10 USD:</span></span> You get the warm fuzzy feeling from giving a sincere “Thank you” for a plugin which <br>
546
- probably made your life easier in the past, and helping to further develop it!
547
  </li>
548
  <li>
549
  b. <span class="sellcodes-quick-purchase" style="float: none;"><span style="text-decoration: underline; font-family: 'Montserrat', sans-serif;" class="sc-button" data-product-id="q1OGuSox" data-option-id="HtNSwPAK">Contribution of 15 USD:</span></span> As in a), plus you will be rewarded with a <strong>free plugin license</strong> <br>
4
  Plugin URI: http://wpacademy.com/software/
5
  Description: Move or copy a WordPress site to another server or to another domain name, move to/from local server hosting, and backup sites.
6
  Author: WP Academy
7
+ Version: 2.2.9
8
  Author URI: http://wpacademy.com/
9
  */
10
  require_once 'analyst/main.php';
543
  <ul style="margin-left: 30px;margin-top: 15px;">
544
  <li>
545
  a. <span class="sellcodes-quick-purchase" style="float: none;"><span style="text-decoration: underline; font-family: 'Montserrat', sans-serif;" class="sc-button" data-product-id="q1OGuSox" data-option-id="FgUPGiaV">Contribution of 5 or 10 USD:</span></span> You get the warm fuzzy feeling from giving a sincere “Thank you” for a plugin which <br>
546
+ probably made your life easier in the past, and helping to further develop it. Plus: a free backlink to your site!
547
  </li>
548
  <li>
549
  b. <span class="sellcodes-quick-purchase" style="float: none;"><span style="text-decoration: underline; font-family: 'Montserrat', sans-serif;" class="sc-button" data-product-id="q1OGuSox" data-option-id="HtNSwPAK">Contribution of 15 USD:</span></span> As in a), plus you will be rewarded with a <strong>free plugin license</strong> <br>