Hi mmaunder,
First of all I would like to thank you for this wonderful plugin. I was able to remove some hacked code from my content in the first scan.
Now after the first scan I am not able to complete a wordfence scan. It keeps mentioning an error: [Feb 09 03:45:18] fseek() [function.fseek]: stream does not support seeking (2) File: /home/.../.../.../wp-content/plugins/wordfence/lib/wfUtils.php Line: 431
Can you please tell what is causing this error
public static function fileTooBig($file){ //Deals with files > 2 gigs on 32 bit systems which are reported with the wrong size due to integer overflow
wfUtils::errorsOff();
$fh = @fopen($file, 'r');
wfUtils::errorsOn();
if(! $fh){ return false; }
$offset = WORDFENCE_MAX_FILE_SIZE_TO_PROCESS + 1;
$tooBig = false;
if(fseek($fh, $offset, SEEK_SET) === 0){
if(strlen(fread($fh, 1)) === 1){
$tooBig = true;
Line 431 marked in bold...
Thank You