Version Description
- Fixed bug that caused "Could not get the administrators user ID. Scan cant continue."
Download this release
Release Info
Developer | mmaunder |
Plugin | Wordfence Security – Firewall & Malware Scan |
Version | 3.0.8 |
Comparing to | |
See all releases |
Code changes from version 3.0.7 to 3.0.8
- readme.txt +4 -1
- wfscan.php +1 -1
- wordfence.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: mmaunder
|
|
3 |
Tags: wordpress, security, wordpress security, security plugin, secure, anti-virus, malware, firewall, antivirus, virus, google safe browsing, phishing, scrapers, hacking, wordfence, securty, secrity, secure
|
4 |
Requires at least: 3.3.1
|
5 |
Tested up to: 3.4.1
|
6 |
-
Stable tag: 3.0.
|
7 |
|
8 |
Wordfence Security is a free enterprise class security plugin that includes a firewall, virus scanning, real-time traffic with geolocation and more.
|
9 |
|
@@ -152,6 +152,9 @@ or a theme, because often these have been updated to fix a security hole.
|
|
152 |
5. If you're technically minded, this is the under-the-hood view of Wordfence options where you can fine-tune your security settings.
|
153 |
|
154 |
== Changelog ==
|
|
|
|
|
|
|
155 |
= 3.0.7 =
|
156 |
* Fixed bug that caused scan to loop, stop halfway or not start for many sites.
|
157 |
* Fix bug that caused scan to not start on sites with thousands (over 20,000 in one case) users.
|
3 |
Tags: wordpress, security, wordpress security, security plugin, secure, anti-virus, malware, firewall, antivirus, virus, google safe browsing, phishing, scrapers, hacking, wordfence, securty, secrity, secure
|
4 |
Requires at least: 3.3.1
|
5 |
Tested up to: 3.4.1
|
6 |
+
Stable tag: 3.0.8
|
7 |
|
8 |
Wordfence Security is a free enterprise class security plugin that includes a firewall, virus scanning, real-time traffic with geolocation and more.
|
9 |
|
152 |
5. If you're technically minded, this is the under-the-hood view of Wordfence options where you can fine-tune your security settings.
|
153 |
|
154 |
== Changelog ==
|
155 |
+
= 3.0.8 =
|
156 |
+
* Fixed bug that caused "Could not get the administrator’s user ID. Scan can’t continue."
|
157 |
+
|
158 |
= 3.0.7 =
|
159 |
* Fixed bug that caused scan to loop, stop halfway or not start for many sites.
|
160 |
* Fix bug that caused scan to not start on sites with thousands (over 20,000 in one case) users.
|
wfscan.php
CHANGED
@@ -151,7 +151,7 @@ class wfScan {
|
|
151 |
public static function becomeAdmin(){
|
152 |
$db = new wfDB();
|
153 |
global $wpdb;
|
154 |
-
$adminUserID = $db->querySingle("select user_id from " . $wpdb->usermeta . " where meta_key='
|
155 |
if(! $adminUserID){
|
156 |
self::status(1, 'error', "Could not get the administrator's user ID. Scan can't continue.");
|
157 |
exit();
|
151 |
public static function becomeAdmin(){
|
152 |
$db = new wfDB();
|
153 |
global $wpdb;
|
154 |
+
$adminUserID = $db->querySingle("select user_id from " . $wpdb->usermeta . " where meta_key='" . $wpdb->base_prefix . "user_level' order by meta_value desc, user_id asc limit 1");
|
155 |
if(! $adminUserID){
|
156 |
self::status(1, 'error', "Could not get the administrator's user ID. Scan can't continue.");
|
157 |
exit();
|
wordfence.php
CHANGED
@@ -4,10 +4,10 @@ Plugin Name: Wordfence Security
|
|
4 |
Plugin URI: http://wordfence.com/
|
5 |
Description: Wordfence Security - Anti-virus and Firewall security plugin for WordPress
|
6 |
Author: Mark Maunder
|
7 |
-
Version: 3.0.
|
8 |
Author URI: http://wordfence.com/
|
9 |
*/
|
10 |
-
define('WORDFENCE_VERSION', '3.0.
|
11 |
if(! defined('WORDFENCE_VERSIONONLY_MODE')){
|
12 |
if((int) @ini_get('memory_limit') < 64){
|
13 |
@ini_set('memory_limit', '64M'); //Some hosts have ini set at as little as 32 megs. 64 is the min sane amount of memory.
|
4 |
Plugin URI: http://wordfence.com/
|
5 |
Description: Wordfence Security - Anti-virus and Firewall security plugin for WordPress
|
6 |
Author: Mark Maunder
|
7 |
+
Version: 3.0.8
|
8 |
Author URI: http://wordfence.com/
|
9 |
*/
|
10 |
+
define('WORDFENCE_VERSION', '3.0.8');
|
11 |
if(! defined('WORDFENCE_VERSIONONLY_MODE')){
|
12 |
if((int) @ini_get('memory_limit') < 64){
|
13 |
@ini_set('memory_limit', '64M'); //Some hosts have ini set at as little as 32 megs. 64 is the min sane amount of memory.
|