i've attempted both versions for 6.x. applied the Diff fix for the fopen issue here ( http://drupal.org/node/524832 ), i've also applied the item name fix with the Search Results being lower case...
this is mainly an issue with Item Names.. as Item #ID's WORK but parse a item number link, not the item name as intended.. Example on http://avlox.com/ (will update this post when fixed)

Comments

sn0n’s picture

ended up disabling module for now. i really cant get it working.
bounty on a new release? :-/

andy68man’s picture

You need to change the line in the Diff fix because Wowhead changed their search results page. Change it from:

  if (preg_match('/<h1>Search results for/', $page->data, $m)) {

to:

  if (preg_match('/<h1>Search Results for/', $page->data, $m)) {

(note the capital "R" in results.)
Give that a go and see what happens! :)

sn0n’s picture

i did that change also as noted, and still no go.. until another or alternate release i've decided to just go ahead and use the html links, as its just me working on the site.

andy68man’s picture

Sorry buddy, for what it's worth I'm using it without using fopen and it works fine. Probably doesn't help much as I guess you can't get your host to turn allow_url_fopen on in php.ini?