Version Description
Download this release
Release Info
Developer | SEO Design Solutions |
Plugin | SEO Ultimate |
Version | 3.4.1 |
Comparing to | |
See all releases |
Code changes from version 3.4 to 3.4.1
- includes/jlfunctions/jlfunctions.php +1 -1
- modules/404s/fofs-log.php +3 -7
- readme.txt +5 -1
- seo-ultimate.php +4 -4
includes/jlfunctions/jlfunctions.php
CHANGED
@@ -4,7 +4,7 @@ JLFunctions Library
|
|
4 |
Copyright (c)2009-2010 John Lamansky
|
5 |
*/
|
6 |
|
7 |
-
foreach (array('arr', 'html', 'io', 'md', 'str', 'url') as $jlfuncfile) {
|
8 |
include dirname(__FILE__)."/$jlfuncfile.php";
|
9 |
}
|
10 |
|
4 |
Copyright (c)2009-2010 John Lamansky
|
5 |
*/
|
6 |
|
7 |
+
foreach (array('arr', 'html', 'io', 'md', 'str', 'url', 'web') as $jlfuncfile) {
|
8 |
include dirname(__FILE__)."/$jlfuncfile.php";
|
9 |
}
|
10 |
|
modules/404s/fofs-log.php
CHANGED
@@ -78,13 +78,9 @@ class SU_FofsLog extends SU_Module {
|
|
78 |
if ($hit['status_code'] == 404) {
|
79 |
|
80 |
if ($this->get_setting('restrict_logging', true)) {
|
81 |
-
if ($this->get_setting('log_spiders', true) && suweb::is_search_engine_ua($hit['user_agent']))
|
82 |
-
|
83 |
-
|
84 |
-
//Has referer; continue
|
85 |
-
} else {
|
86 |
-
return $hit;
|
87 |
-
}
|
88 |
}
|
89 |
|
90 |
$exceptions = suarr::explode_lines($this->get_setting('exceptions', ''));
|
78 |
if ($hit['status_code'] == 404) {
|
79 |
|
80 |
if ($this->get_setting('restrict_logging', true)) {
|
81 |
+
if (!($this->get_setting('log_spiders', true) && suweb::is_search_engine_ua($hit['user_agent'])) &&
|
82 |
+
!($this->get_setting('log_errors_with_referers', true) && strlen($hit['referer'])))
|
83 |
+
return $hit;
|
|
|
|
|
|
|
|
|
84 |
}
|
85 |
|
86 |
$exceptions = suarr::explode_lines($this->get_setting('exceptions', ''));
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 3.4
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, and more.
|
9 |
|
@@ -200,6 +200,10 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
200 |
|
201 |
== Changelog ==
|
202 |
|
|
|
|
|
|
|
|
|
203 |
= Version 3.4 (June 25, 2010) =
|
204 |
* Feature: 404 Monitor can now ignore specific URLs and/or wildcard URL patterns
|
205 |
* Bugfix: 404 Monitor no longer logs the same referer more than once
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 3.4.1
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, and more.
|
9 |
|
200 |
|
201 |
== Changelog ==
|
202 |
|
203 |
+
= Version 3.4.1 (June 25, 2010) =
|
204 |
+
* Bugfix: Fixed fatal error on 404 pages
|
205 |
+
* Bugfix: Fixed issue where 404 errors weren't being logged
|
206 |
+
|
207 |
= Version 3.4 (June 25, 2010) =
|
208 |
* Feature: 404 Monitor can now ignore specific URLs and/or wildcard URL patterns
|
209 |
* Bugfix: 404 Monitor no longer logs the same referer more than once
|
seo-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, "more" links, 404 errors, and more.
|
6 |
-
Version: 3.4
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 3.4
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '2.8');
|
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define("SU_PLUGIN_NAME", "SEO Ultimate");
|
49 |
define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
|
50 |
-
define("SU_VERSION", "3.4");
|
51 |
define("SU_AUTHOR", "SEO Design Solutions");
|
52 |
define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
|
53 |
-
define("SU_USER_AGENT", "SeoUltimate/3.4");
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, "more" links, 404 errors, and more.
|
6 |
+
Version: 3.4.1
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 3.4.1
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define("SU_PLUGIN_NAME", "SEO Ultimate");
|
49 |
define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
|
50 |
+
define("SU_VERSION", "3.4.1");
|
51 |
define("SU_AUTHOR", "SEO Design Solutions");
|
52 |
define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
|
53 |
+
define("SU_USER_AGENT", "SeoUltimate/3.4.1");
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|