Hi!
I was wondering if there has been any success of getting missing recepies to run with localized version of wowroster. I found this thread and modified the missing.php according to the post above, adding
- Code: Select all
'.$roster_conf['roster_lang'];
to every url. Additionally I modified
- Code: Select all
$query = "select recipe_name from ".ROSTER_RECIPESTABLE." where member_id = '$id' and skill_name = '$skill';";
to
- Code: Select all
$query = "select recipe_name from ".ROSTER_RECIPESTABLE." where member_id = '$id' and skill_name = '".$wordings[$roster_conf['roster_lang']][$skill]."';";
as the tradeskill is saved in the roster db as a localized string. I have have to CURL error with my ISP too, but this can be fixed by commenting the line
- Code: Select all
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
as this option is not needed with allakhazam. But this was mentioned before. Additionaly I increased the timeout to
- Code: Select all
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
Now I missingrecipies works for my german wowroster. Best check it with "first aid" as many people who have first aid up to 300 are missing "strong anti-venom" but have every other recipe, thus you should see only "missing recipe".
It does however not work with the specialized leather and blacksmithing tradeskills, so you get a lot "missing recipies".
Halin