Old PageRank URL:
http://toolbarqueries.google.com/search?client=navclient-auto&features=Rank&ch=8f3b58e04&q=info:[URLHERE]
New PageRank URL:
http://toolbarqueries.google.com/tbr?client=navclient-auto&features=Rank&ch=8f3b58e04&q=info:[URLHERE]
The solution it to edit …\IEPro\plugins\searchstatus\plugin.js like this and Google PageRank work again.
Old code:
queryurl = "http://toolbarqueries.google.com/search?client=navclient-auto&ch=" + mGoogleCH + "&ie=UTF-8&oe=UTF-8&features=Rank&q=" + reqgre;
New code:
queryurl = "http://toolbarqueries.google.com/tbr?client=navclient-auto&ch=" + mGoogleCH + "&ie=UTF-8&oe=UTF-8&features=Rank&q=" + reqgre;
The Alexa rank has since been broken and only show 0 so the plugin.js needs to be edited.
Change the regex parsing of the xml result like this:
Change from
var re = /POPULARITY.*TEXT=\"(\d+)\"\/\>/i;
to
var re = /POPULARITY.*TEXT=\"(\d+)\"/i;
No comments:
Post a Comment