I am sorry, I have found another problem while using this within Dragonfly.
When I click an item that is in the GuildVault I get a 404 error page not found.
Below is the URL created for a typical item. (website name changed)
- Code: Select all
http://mywebsite.com/dragonfly/RosterActivity&file=addon&roster_addon_name=guildvault&tab=Tab1&item=1&itemcount=5&action=order
With my limited knowledge of the way DF works should the link be
- Code: Select all
http://mywebsite.com/dragonfly/index.php?name=RosterActivity&file=addon&roster_addon_name=guildvault&tab=Tab1&item=1&itemcount=5&action=order
It looks as if it's missing the index.php?name= part.
So in includes/lib_functions.php I have changed line 61 from
- Code: Select all
$tab_content .= ">\n<a href=\"./$script_filename&tab=$tab&item=$item_num&itemcount=".$content[$item_num]['count']."&action=order\" target=\"_self\"><img src=\"./".$roster_conf['img_url']."Interface/Icons/";
to
- Code: Select all
$tab_content .= ">\n<a href=\"./index.php?name=$script_filename&tab=$tab&item=$item_num&itemcount=".$content[$item_num]['count']."&action=order\" target=\"_self\"><img src=\"./".$roster_conf['img_url']."Interface/Icons/";
I hope that is right. Worked when I clicked the item.