Plugin info

Total downloads: 6,783
Active installs: 100
Total reviews: 5
Average rating: 3.4
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 6/4/2016 (3496 days ago)
Added to WordPress: 12/8/2012 (13 years old)
Minimum WordPress version: 3.2
Tested up to WordPress version: 4.5.33
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3496 days ago • 5 reviews

22/100

Is mPress Fix URL References abandoned?

Possibly abandoned (last update 3496 days ago).

Compatibility

Requires WordPress: 3.2
Tested up to: 4.5.33
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

MPress
Rating 0.0/5 (0 reviews)Active installs 0

Description

The mPress Fix URL References plugin allows you to easily fix URL references in your WordPress database.

Why?

When you move your site from one domain to another, there is no built-in process for updating URL references in the database. For example, if you have internal links in your post content that point to the full URL of other pages on your site, these URL references will become invalid when you migrate your site to a new domain. If you aren’t a developer who knows how to write MySQL queries, replacing potentially thousands of instances of incorrect URLs is a real pain. No worries. I’m a developer and I’ve done all the work for you.

How?

Using this plugin is simple:

  1. Ensure that you define the WP_HOME and WP_SITEURL constants in your wp-config.php file. It’s not that hard.
  2. Install the plugin
  3. Activate the plugin
  4. In the WordPress admin, click on ‘Fix URL References’ in the ‘Tools’ menu
  5. Enter the URL that you want to have replaced
  6. Click on ‘Fix References’

Features

  • Clean, well written code that won’t bog down your site

Installation

Prerequisites

If you don’t meet the below requirements, I highly recommend you upgrade your WordPress install or move to a web host
that supports a more recent version of PHP.

  • Requires WordPress version 3.2 or greater
  • Requires PHP version 5 or greater ( PHP version 5.2.4 is required to run WordPress version 3.2 )

The Easy Way

  1. In your WordPress admin, go to ‘Plugins’ and then click on ‘Add New’.
  2. In the search box, type in ‘mPress Fix URL References’ and hit enter. This plugin should be the first and likely the only result.
  3. Click on the ‘Install’ link.
  4. Once installed, click the ‘Activate this plugin’ link.

The Hard Way

  1. Download the .zip file containing the plugin.
  2. Upload the file into your /wp-content/plugins/ directory and unzip
  3. Find the plugin in the WordPress admin on the ‘Plugins’ page and click ‘Activate’

Usage Instructions

Before you do anything else, this plugin requires that you define the WP_HOME and WP_SITEURL constants in your wp-config.php file.

Once the plugin is installed and activated, just click on ‘Fix URL References’ in the ‘Tools’ menu on the left hand side in the WordPress admin area. Next, simply enter the old URL you want to have replaced and click ‘Fix References’. Yep… it’s that easy.

Frequently Asked Questions

By default, this plugin only replaces URLs in specific tables and fields that would typically have URL references. I understand that this doesn’t meet everyone’s use cases, so this plugin exposes a simple PHP function for replacing string content from any given table and field.

Please only use this function if you know what you are doing:

mPress_Fix_URL_References::run_replacement_query( $table, $field, $old, $new );

This plugin replaces content in the ‘post_content’ field in the ‘posts’ table. The line of code below is from this plugin and is given as an example of how to use this function:

mPress_Fix_URL_References::run_replacement_query( 
    'posts', 
    'post_content', 
    'http://www.old-domain.com', 
    'http://www.new-domain.com' 
);

Notice how the table name doesn’t include the WordPress table prefix. This gets added automatically.

Review feed

No reviews available

Screenshots

  1. Go to 'Tools' -> 'Fix URL References' to get started.

    Go to 'Tools' -> 'Fix URL References' to get started.

Changelog

1.0

  • Updated to release version after testing in WordPress 4.5.2

0.2

  • Removed deprecated screen_icon() function (props Shelob9)

0.1

  • Initial commit