i had the same problem and after experimenting a bit, this is what i did and it seemed to work
1. go to PLUGIN, look for SEO RANK REPORTER and click on EDIT
2. on the right where it says PLUGIN FILES, make sure that seo-rank-reporter/seo-rank-reporter.php is highlighted
3. look for: function kw_rank_checker($target_key,$entered_url,$first_time)
4. replace:
$original_entered_url = $entered_url;
with
$original_entered_url = $entered_url;
$entered_url_www = $entered_url;
5. replace the following:
//if (substr($entered_url, 7, 4) == "www." && substr($entered_url, 0, 7) == "http://" ) {
$entered_url_www = $entered_url;
$entered_url = substr_replace($entered_url_www, "", 7, 4);
} elseif (substr($entered_url, 7, 4) != "www." && substr($entered_url, 0, 7) == "http://" ) {
$entered_url_www = substr_replace($entered_url, "www.", 7, 0);
}
if (substr($entered_url, 8, 4) == "www." && substr($entered_url, 0, 8) == "https://" ) {
$entered_url_www = $entered_url;
$entered_url = substr_replace($entered_url_www, "", 8, 4);
} elseif (substr($entered_url, 8, 4) != "www." && substr($entered_url, 0, 8) == "https://") {
$entered_url_www = substr_replace($entered_url, "www.", 8, 0);
}
with
//if (substr($entered_url, 7, 4) == "www." && substr($entered_url, 0, 7) == "http://" ) {
// $entered_url_www = $entered_url;
// $entered_url = substr_replace($entered_url_www, "", 7, 4);
//} elseif (substr($entered_url, 7, 4) != "www." && substr($entered_url, 0, 7) == "http://" ) {
// $entered_url_www = substr_replace($entered_url, "www.", 7, 0);
//}
//if (substr($entered_url, 8, 4) == "www." && substr($entered_url, 0, 8) == "https://" ) {
// $entered_url_www = $entered_url;
// $entered_url = substr_replace($entered_url_www, "", 8, 4);
//} elseif (substr($entered_url, 8, 4) != "www." && substr($entered_url, 0, 8) == "https://") {
// $entered_url_www = substr_replace($entered_url, "www.", 8, 0);
//}
6. click on UPDATE FILE button
and you are done!
i STRONGLY suggest that you do a CTRL-ALL to select the whole file content first and then do a COPY into a blank text file (eg. notepad) so you can restore it just in case you made a mistake or it did not work for you
of course, i take no responsibility for the consequences of this 'hack' :-)
hope this helps
serge