Version Description
Download this release
Release Info
Developer | Mat Lipe |
Plugin | Go Live Update URLS |
Version | 6.1.1 |
Comparing to | |
See all releases |
Code changes from version 6.1.0 to 6.1.1
- go-live-update-urls.php +2 -2
- readme.txt +7 -7
- src/Database.php +1 -1
go-live-update-urls.php
CHANGED
@@ -5,13 +5,13 @@
|
|
5 |
* Description: Updates all the URLs in the database to point to a new URL when making your site live or changing domains.
|
6 |
* Author: OnPoint Plugins
|
7 |
* Author URI: https://onpointplugins.com/
|
8 |
-
* Version: 6.1.
|
9 |
* Text Domain: go-live-update-urls
|
10 |
*
|
11 |
* @package go-live-update-urls
|
12 |
*/
|
13 |
|
14 |
-
define( 'GO_LIVE_UPDATE_URLS_VERSION', '6.1.
|
15 |
define( 'GO_LIVE_UPDATE_URLS_REQUIRED_PRO_VERSION', '6.0.0' );
|
16 |
define( 'GO_LIVE_UPDATE_URLS_URL', plugin_dir_url( __FILE__ ) );
|
17 |
|
5 |
* Description: Updates all the URLs in the database to point to a new URL when making your site live or changing domains.
|
6 |
* Author: OnPoint Plugins
|
7 |
* Author URI: https://onpointplugins.com/
|
8 |
+
* Version: 6.1.1
|
9 |
* Text Domain: go-live-update-urls
|
10 |
*
|
11 |
* @package go-live-update-urls
|
12 |
*/
|
13 |
|
14 |
+
define( 'GO_LIVE_UPDATE_URLS_VERSION', '6.1.1' );
|
15 |
define( 'GO_LIVE_UPDATE_URLS_REQUIRED_PRO_VERSION', '6.0.0' );
|
16 |
define( 'GO_LIVE_UPDATE_URLS_URL', plugin_dir_url( __FILE__ ) );
|
17 |
|
readme.txt
CHANGED
@@ -5,13 +5,13 @@ Tags: urls, launching, site changes, tools, domain, domains, domain changes, url
|
|
5 |
Requires at least: 4.8.0
|
6 |
Tested up to: 5.5.0
|
7 |
Requires PHP: 5.6.0
|
8 |
-
Stable tag: 6.1.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
Goes through entire site and replaces all instances of an old url with a new one. Used to change the domain of a site. Works on both multi-site and single site installs.
|
13 |
|
14 |
-
<strong>Check out <a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Go Live Update Urls PRO</a> for more features including
|
15 |
|
16 |
<blockquote><a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Pro version 6.0.0</a> is now available with a greatly improved testing and updating experience!</blockquote>
|
17 |
|
@@ -25,10 +25,10 @@ Goes through entire site and replaces all instances of an old url with a new one
|
|
25 |
<h3>Updates Entire Site including</h3>
|
26 |
* Posts
|
27 |
* Pages
|
28 |
-
* Image
|
29 |
* Excerpts
|
30 |
-
* Post
|
31 |
-
* Custom
|
32 |
* Widgets and widget data
|
33 |
* Options and settings
|
34 |
* And much more
|
@@ -86,12 +86,12 @@ Under the Tools menu in the dashboard there will be a "Go Live" link.
|
|
86 |
|
87 |
= Why does updating the domain break some plugins? =
|
88 |
|
89 |
-
Some plugins will store the data in the database
|
90 |
|
91 |
= How do I know which tables I should not update? =
|
92 |
|
93 |
Most tables will be just fine to update. This plugin will tell you which ones not to update.
|
94 |
-
If you wish to try to update tables mentioned as not safe anyway, you may make a backup of your database, run this on all tables and if you run into trouble, restore your database, un-check tables in sections, and rerun this until you find the culprit. If you find you are running into issues with custom tables, you may want to check out the <a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Pro Version</a> of this plugin which works with any table.
|
95 |
|
96 |
== Screenshots ==
|
97 |
|
5 |
Requires at least: 4.8.0
|
6 |
Tested up to: 5.5.0
|
7 |
Requires PHP: 5.6.0
|
8 |
+
Stable tag: 6.1.1
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
Goes through entire site and replaces all instances of an old url with a new one. Used to change the domain of a site. Works on both multi-site and single site installs.
|
13 |
|
14 |
+
<strong>Check out <a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Go Live Update Urls PRO</a> for more features including support for tables created by plugins, the ability to test a URL before updating, update history, priority support, and so much more!</strong>
|
15 |
|
16 |
<blockquote><a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Pro version 6.0.0</a> is now available with a greatly improved testing and updating experience!</blockquote>
|
17 |
|
25 |
<h3>Updates Entire Site including</h3>
|
26 |
* Posts
|
27 |
* Pages
|
28 |
+
* Image URLs
|
29 |
* Excerpts
|
30 |
+
* Post meta data
|
31 |
+
* Custom post types
|
32 |
* Widgets and widget data
|
33 |
* Options and settings
|
34 |
* And much more
|
86 |
|
87 |
= Why does updating the domain break some plugins? =
|
88 |
|
89 |
+
Some plugins will store the serialized or JSON data in the database which does not allow for easy updating of the data. You may un-check tables used by such plugins and then update the urls manually for those plugins. Currently, the options, postmeta, usermeta, commentmeta, blogmeta, and sitemeta tables are serialization safe. The <a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Pro Version</a> supports updating all tables created by plugins, including ones with serialized or JSON data.
|
90 |
|
91 |
= How do I know which tables I should not update? =
|
92 |
|
93 |
Most tables will be just fine to update. This plugin will tell you which ones not to update.
|
94 |
+
If you wish to try to update tables mentioned as "not safe" anyway, you may make a backup of your database, run this on all tables and if you run into trouble, restore your database, un-check tables in sections, and rerun this until you find the culprit. If you find you are running into issues with custom tables, you may want to check out the <a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Pro Version</a> of this plugin which works with any table.
|
95 |
|
96 |
== Screenshots ==
|
97 |
|
src/Database.php
CHANGED
@@ -122,7 +122,7 @@ class Database {
|
|
122 |
'tinytext',
|
123 |
'varchar',
|
124 |
];
|
125 |
-
return apply_filters( 'go-live-update-urls/database/
|
126 |
}
|
127 |
|
128 |
|
122 |
'tinytext',
|
123 |
'varchar',
|
124 |
];
|
125 |
+
return apply_filters( 'go-live-update-urls/database/column-types', $types, $this );
|
126 |
}
|
127 |
|
128 |
|