Version Description
(13/09/2015) =
Improvements - Introduced new website for the plugin. - Fixed few dead link issues
Download this release
Release Info
| Developer | joelcj91 |
| Plugin | |
| Version | 2.0.6 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.5 to 2.0.6
- 404-to-301.php +4 -4
- admin/class-404-to-301-admin.php +1 -1
- admin/class-404-to-301-logs.php +1 -1
- admin/partials/404-to-301-admin-credits-tab.php +3 -3
- admin/partials/404-to-301-admin-display.php +1 -1
- includes/class-404-to-301-activator.php +1 -1
- includes/class-404-to-301-loader.php +1 -1
- includes/class-404-to-301.php +2 -2
- public/class-404-to-301-public.php +1 -1
- readme.txt +16 -8
- uninstall.php +1 -1
404-to-301.php
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* Plugin Name: 404 to 301
|
| 4 |
-
* Plugin URI: http://iscode.co/
|
| 5 |
* Description: Automatically redirect all <strong>404 errors</strong> to any page using <strong>301 redirect for SEO</strong>. You can <strong>redirect and log</strong> every 404 errors. No more 404 errors in Webmaster tool.
|
| 6 |
-
* Version: 2.0.
|
| 7 |
* Author: Joel James
|
| 8 |
* Author URI: http://iscode.co/
|
| 9 |
* Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XUVWY8HUBUXY4
|
|
@@ -28,7 +28,7 @@
|
|
| 28 |
* @package I4T3
|
| 29 |
* @category Core
|
| 30 |
* @author Joel James
|
| 31 |
-
* @version 2.0.
|
| 32 |
*/
|
| 33 |
|
| 34 |
// If this file is called directly, abort.
|
|
@@ -52,7 +52,7 @@ if(!defined('I4T3_DB_VERSION')) {
|
|
| 52 |
define( 'I4T3_DB_VERSION', '3' );
|
| 53 |
}
|
| 54 |
if(!defined('I4T3_VERSION')) {
|
| 55 |
-
define( 'I4T3_VERSION', '2.0.
|
| 56 |
}
|
| 57 |
// Set who all can access 404 settings. You can change this if you want to give others access.
|
| 58 |
if(!defined('I4T3_ADMIN_PERMISSION')) {
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* Plugin Name: 404 to 301
|
| 4 |
+
* Plugin URI: http://iscode.co/products/404-to-301/
|
| 5 |
* Description: Automatically redirect all <strong>404 errors</strong> to any page using <strong>301 redirect for SEO</strong>. You can <strong>redirect and log</strong> every 404 errors. No more 404 errors in Webmaster tool.
|
| 6 |
+
* Version: 2.0.6
|
| 7 |
* Author: Joel James
|
| 8 |
* Author URI: http://iscode.co/
|
| 9 |
* Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XUVWY8HUBUXY4
|
| 28 |
* @package I4T3
|
| 29 |
* @category Core
|
| 30 |
* @author Joel James
|
| 31 |
+
* @version 2.0.6
|
| 32 |
*/
|
| 33 |
|
| 34 |
// If this file is called directly, abort.
|
| 52 |
define( 'I4T3_DB_VERSION', '3' );
|
| 53 |
}
|
| 54 |
if(!defined('I4T3_VERSION')) {
|
| 55 |
+
define( 'I4T3_VERSION', '2.0.6' );
|
| 56 |
}
|
| 57 |
// Set who all can access 404 settings. You can change this if you want to give others access.
|
| 58 |
if(!defined('I4T3_ADMIN_PERMISSION')) {
|
admin/class-404-to-301-admin.php
CHANGED
|
@@ -9,7 +9,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
| 9 |
* Defines the plugin name, version, and enqueue the dashboard-specific stylesheet, JavaScript
|
| 10 |
* and all other admin side functions.
|
| 11 |
*
|
| 12 |
-
* @link http://iscode.co/
|
| 13 |
* @since 2.0.0
|
| 14 |
* @package I4T3
|
| 15 |
* @subpackage I4T3/admin
|
| 9 |
* Defines the plugin name, version, and enqueue the dashboard-specific stylesheet, JavaScript
|
| 10 |
* and all other admin side functions.
|
| 11 |
*
|
| 12 |
+
* @link http://iscode.co/products/404-to-301/
|
| 13 |
* @since 2.0.0
|
| 14 |
* @package I4T3
|
| 15 |
* @subpackage I4T3/admin
|
admin/class-404-to-301-logs.php
CHANGED
|
@@ -20,7 +20,7 @@ if( ! class_exists( 'WP_List_Table_404' ) ) {
|
|
| 20 |
* This class defines all the methods to output the error logs display table using
|
| 21 |
* WordPress listing table class.
|
| 22 |
*
|
| 23 |
-
* @link http://iscode.co/
|
| 24 |
* @since 2.0.0
|
| 25 |
* @package I4T3
|
| 26 |
* @subpackage I4T3/admin
|
| 20 |
* This class defines all the methods to output the error logs display table using
|
| 21 |
* WordPress listing table class.
|
| 22 |
*
|
| 23 |
+
* @link http://iscode.co/products/404-to-301/
|
| 24 |
* @since 2.0.0
|
| 25 |
* @package I4T3
|
| 26 |
* @subpackage I4T3/admin
|
admin/partials/404-to-301-admin-credits-tab.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
<hr/>
|
| 21 |
</p>
|
| 22 |
<p>
|
| 23 |
-
So you installed this plugin and how is it doing? Feel free to <a href="http://iscode.co/
|
| 24 |
</p>
|
| 25 |
</div>
|
| 26 |
</div>
|
|
@@ -55,11 +55,11 @@
|
|
| 55 |
<span></span>
|
| 56 |
</div>
|
| 57 |
<div class="misc-pub-section">
|
| 58 |
-
<label><a href="http://iscode.co/
|
| 59 |
<span></span>
|
| 60 |
</div>
|
| 61 |
<div class="misc-pub-section">
|
| 62 |
-
<label><a href="http://iscode.co/
|
| 63 |
<span></span>
|
| 64 |
</div>
|
| 65 |
<div class="misc-pub-section">
|
| 20 |
<hr/>
|
| 21 |
</p>
|
| 22 |
<p>
|
| 23 |
+
So you installed this plugin and how is it doing? Feel free to <a href="http://iscode.co/support/" class="i4t3-author-link" target="_blank" title="<?php _e( 'Contact the developer', '404-to-301' ); ?>">get in touch with me</a> anytime for help. I am always happy to help.
|
| 24 |
</p>
|
| 25 |
</div>
|
| 26 |
</div>
|
| 55 |
<span></span>
|
| 56 |
</div>
|
| 57 |
<div class="misc-pub-section">
|
| 58 |
+
<label><a href="http://iscode.co/docs/category/404-to-301/" class="i4t3-author-link" target="_blank" title="Visit plugin website"><strong>Plugin documentation</strong></a></label>
|
| 59 |
<span></span>
|
| 60 |
</div>
|
| 61 |
<div class="misc-pub-section">
|
| 62 |
+
<label><a href="http://iscode.co/docs/category/404-to-301/" class="i4t3-author-link" target="_blank" title="Visit plugin website"><strong>More plugin details</strong></a></label>
|
| 63 |
<span></span>
|
| 64 |
</div>
|
| 65 |
<div class="misc-pub-section">
|
admin/partials/404-to-301-admin-display.php
CHANGED
|
@@ -7,7 +7,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
| 7 |
*
|
| 8 |
* This file is used to markup the dashboard pages of the plugin.
|
| 9 |
*
|
| 10 |
-
* @link http://iscode.co/
|
| 11 |
* @since 2.0.0
|
| 12 |
*
|
| 13 |
* @package I4T3
|
| 7 |
*
|
| 8 |
* This file is used to markup the dashboard pages of the plugin.
|
| 9 |
*
|
| 10 |
+
* @link http://iscode.co/products/404-to-301/
|
| 11 |
* @since 2.0.0
|
| 12 |
*
|
| 13 |
* @package I4T3
|
includes/class-404-to-301-activator.php
CHANGED
|
@@ -7,7 +7,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
| 7 |
*
|
| 8 |
* This class defines all code necessary to run during the plugin's activation.
|
| 9 |
*
|
| 10 |
-
* @link http://iscode.co/
|
| 11 |
* @since 2.0.0
|
| 12 |
* @package I4T3
|
| 13 |
* @subpackage I4T3/includes
|
| 7 |
*
|
| 8 |
* This class defines all code necessary to run during the plugin's activation.
|
| 9 |
*
|
| 10 |
+
* @link http://iscode.co/products/404-to-301/
|
| 11 |
* @since 2.0.0
|
| 12 |
* @package I4T3
|
| 13 |
* @subpackage I4T3/includes
|
includes/class-404-to-301-loader.php
CHANGED
|
@@ -13,7 +13,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
| 13 |
*
|
| 14 |
* @package I4T3
|
| 15 |
* @subpackage I4T3/includes
|
| 16 |
-
* @link http://iscode.co/
|
| 17 |
* @since 2.0.0
|
| 18 |
* @author Joel James <me@joelsays.com>
|
| 19 |
*/
|
| 13 |
*
|
| 14 |
* @package I4T3
|
| 15 |
* @subpackage I4T3/includes
|
| 16 |
+
* @link http://iscode.co/products/404-to-301/
|
| 17 |
* @since 2.0.0
|
| 18 |
* @author Joel James <me@joelsays.com>
|
| 19 |
*/
|
includes/class-404-to-301.php
CHANGED
|
@@ -11,7 +11,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
| 11 |
* Also maintains the unique identifier of this plugin as well as the current
|
| 12 |
* version of the plugin.
|
| 13 |
*
|
| 14 |
-
* @link http://iscode.co/
|
| 15 |
* @since 2.0.0
|
| 16 |
* @package I4T3
|
| 17 |
* @subpackage I4T3/includes
|
|
@@ -67,7 +67,7 @@ class _404_To_301 {
|
|
| 67 |
public function __construct() {
|
| 68 |
|
| 69 |
$this->plugin_name = '404-to-301';
|
| 70 |
-
$this->version = '2.0.
|
| 71 |
$this->table = $GLOBALS['wpdb']->prefix . '404_to_301';
|
| 72 |
$this->load_dependencies();
|
| 73 |
$this->define_admin_hooks();
|
| 11 |
* Also maintains the unique identifier of this plugin as well as the current
|
| 12 |
* version of the plugin.
|
| 13 |
*
|
| 14 |
+
* @link http://iscode.co/products/404-to-301/
|
| 15 |
* @since 2.0.0
|
| 16 |
* @package I4T3
|
| 17 |
* @subpackage I4T3/includes
|
| 67 |
public function __construct() {
|
| 68 |
|
| 69 |
$this->plugin_name = '404-to-301';
|
| 70 |
+
$this->version = '2.0.6';
|
| 71 |
$this->table = $GLOBALS['wpdb']->prefix . '404_to_301';
|
| 72 |
$this->load_dependencies();
|
| 73 |
$this->define_admin_hooks();
|
public/class-404-to-301-public.php
CHANGED
|
@@ -7,7 +7,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
| 7 |
* The public-facing functionality of the plugin.
|
| 8 |
*
|
| 9 |
*
|
| 10 |
-
* @link http://iscode.co/
|
| 11 |
* @since 2.0.0
|
| 12 |
* @package I4T3
|
| 13 |
* @subpackage I4T3/public
|
| 7 |
* The public-facing functionality of the plugin.
|
| 8 |
*
|
| 9 |
*
|
| 10 |
+
* @link http://iscode.co/products/404-to-301
|
| 11 |
* @since 2.0.0
|
| 12 |
* @package I4T3
|
| 13 |
* @subpackage I4T3/public
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Tags: 404, 301, 302, 307, not found, 404 redirect, 404 to 301, 301 redirect, seo
|
|
| 4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XUVWY8HUBUXY4
|
| 5 |
Requires at least: 3.0
|
| 6 |
Tested up to: 4.3
|
| 7 |
-
Stable tag: 2.0.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -37,7 +37,7 @@ You will not see any 404 error reports in your webmaster tool dashboard.
|
|
| 37 |
> - Follows best WordPress coding standards.<br />
|
| 38 |
> - Of course, available in [GitHub](https://github.com/joel-james/404-to-301)<br />
|
| 39 |
>
|
| 40 |
-
> [Installation](https://wordpress.org/plugins/404-to-301/installation/) | [Docs](http://iscode.co/
|
| 41 |
|
| 42 |
|
| 43 |
**Bug Reports**
|
|
@@ -46,7 +46,7 @@ Bug reports for 404 to 301 are always welcome. [Report here](http://iscode.co/su
|
|
| 46 |
|
| 47 |
**More information**
|
| 48 |
|
| 49 |
-
- [404 to 301 - Plugin Homepage](https://iscode.co/
|
| 50 |
- Follow the developer [@Twitter](https://twitter.com/Joel_James)
|
| 51 |
- Other [WordPress plugins](https://profiles.wordpress.org/joelcj91/#content-plugins) by [Joel James for is_code()](https://iscode.co/)
|
| 52 |
|
|
@@ -67,7 +67,7 @@ If you are confused with these terms 404,301, redirect etc, [refer this page](ht
|
|
| 67 |
|
| 68 |
|
| 69 |
= Need more help? =
|
| 70 |
-
Please take a look at the [plugin documentation](http://iscode.co/
|
| 71 |
|
| 72 |
= Missing something? =
|
| 73 |
If you would like to have an additional feature for this plugin, [let me know](http://iscode.co/support/)
|
|
@@ -92,14 +92,14 @@ Yes. You can enable email notifications on each 404 errors (optional).
|
|
| 92 |
|
| 93 |
= I need more details =
|
| 94 |
|
| 95 |
-
Please take a look at the [plugin documentation](http://iscode.co/
|
| 96 |
|
| 97 |
|
| 98 |
== Other Notes ==
|
| 99 |
|
| 100 |
= Bug Reports =
|
| 101 |
|
| 102 |
-
Bug reports for 404 to 301 are always welcome. [Report here](
|
| 103 |
|
| 104 |
|
| 105 |
== Screenshots ==
|
|
@@ -110,6 +110,12 @@ Bug reports for 404 to 301 are always welcome. [Report here](https://iscode.co/s
|
|
| 110 |
|
| 111 |
== Changelog ==
|
| 112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
= 2.0.5 (03/09/2015) =
|
| 114 |
|
| 115 |
**Improvements**
|
|
@@ -179,5 +185,7 @@ Bug reports for 404 to 301 are always welcome. [Report here](https://iscode.co/s
|
|
| 179 |
|
| 180 |
== Upgrade Notice ==
|
| 181 |
|
| 182 |
-
= 2.0.
|
| 183 |
-
|
|
|
|
|
|
| 4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XUVWY8HUBUXY4
|
| 5 |
Requires at least: 3.0
|
| 6 |
Tested up to: 4.3
|
| 7 |
+
Stable tag: 2.0.6
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 37 |
> - Follows best WordPress coding standards.<br />
|
| 38 |
> - Of course, available in [GitHub](https://github.com/joel-james/404-to-301)<br />
|
| 39 |
>
|
| 40 |
+
> [Installation](https://wordpress.org/plugins/404-to-301/installation/) | [Docs](http://iscode.co/docs/category/404-to-301/) | [Screenshots](https://wordpress.org/plugins/404-to-301/screenshots/)
|
| 41 |
|
| 42 |
|
| 43 |
**Bug Reports**
|
| 46 |
|
| 47 |
**More information**
|
| 48 |
|
| 49 |
+
- [404 to 301 - Plugin Homepage](https://iscode.co/products/404-to-301/), containing more details and docs.
|
| 50 |
- Follow the developer [@Twitter](https://twitter.com/Joel_James)
|
| 51 |
- Other [WordPress plugins](https://profiles.wordpress.org/joelcj91/#content-plugins) by [Joel James for is_code()](https://iscode.co/)
|
| 52 |
|
| 67 |
|
| 68 |
|
| 69 |
= Need more help? =
|
| 70 |
+
Please take a look at the [plugin documentation](http://iscode.co/docs/category/404-to-301/) or [open a support request](http://wordpress.org/support/plugin/404-to-301/).
|
| 71 |
|
| 72 |
= Missing something? =
|
| 73 |
If you would like to have an additional feature for this plugin, [let me know](http://iscode.co/support/)
|
| 92 |
|
| 93 |
= I need more details =
|
| 94 |
|
| 95 |
+
Please take a look at the [plugin documentation](http://iscode.co/docs/category/404-to-301/) or [open a support request](http://wordpress.org/support/plugin/404-to-301/).
|
| 96 |
|
| 97 |
|
| 98 |
== Other Notes ==
|
| 99 |
|
| 100 |
= Bug Reports =
|
| 101 |
|
| 102 |
+
Bug reports for 404 to 301 are always welcome. [Report here](http://iscode.co/bug-report/).
|
| 103 |
|
| 104 |
|
| 105 |
== Screenshots ==
|
| 110 |
|
| 111 |
== Changelog ==
|
| 112 |
|
| 113 |
+
= 2.0.6 (13/09/2015) =
|
| 114 |
+
|
| 115 |
+
**Improvements**
|
| 116 |
+
- Introduced new website for the plugin.
|
| 117 |
+
- Fixed few dead link issues
|
| 118 |
+
|
| 119 |
= 2.0.5 (03/09/2015) =
|
| 120 |
|
| 121 |
**Improvements**
|
| 185 |
|
| 186 |
== Upgrade Notice ==
|
| 187 |
|
| 188 |
+
= 2.0.6 =
|
| 189 |
+
**Improvements**
|
| 190 |
+
- Introduced new website for the plugin.
|
| 191 |
+
- Fixed few dead link issues
|
uninstall.php
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
* Removes everything that 404 to 301 added to your db.
|
| 7 |
*
|
| 8 |
*
|
| 9 |
-
* @link http://iscode.co/
|
| 10 |
* @since 2.0.0
|
| 11 |
* @author Joel James
|
| 12 |
* @package I4T3
|
| 6 |
* Removes everything that 404 to 301 added to your db.
|
| 7 |
*
|
| 8 |
*
|
| 9 |
+
* @link http://iscode.co/products/404-to-301/
|
| 10 |
* @since 2.0.0
|
| 11 |
* @author Joel James
|
| 12 |
* @package I4T3
|
