If you look at the source code, you'll see a bunch of "img src" entries that have multiple slashes in the name. Some web servers will process these without any issues, but this is not the case with yours.
The fix would be to open the addons/guildbank/gbank.php file and to find the line:
- Code: Select all
// Clean the Item Texture of backslashes and replace them with forward slashes
$item_texture=str_replace('\\','/',$itemrow['item_texture']);
and add this below it:
- Code: Select all
$item_texture = preg_replace("|\/+|","/",$item_texture);
Overall the code should look something like:
- Code: Select all
$item_texture = $item_texture=str_replace('\\','/',$itemrow['item_texture']);
$item_texture = preg_replace("|\/+|","/",$item_texture);
When you are done. The problem can be ocurring for a number of reasons, (database INSERTS adding extra slashes?), But this should take care of your problem without having to try and figure out any changes to your system(s).