there seams to be a couple of issues with the Nuke Port of roster and the Realm Status image
first in the Menu.php its called via
- Code: Select all
<img alt="WoW Server Status" src="' . $roster_conf['roster_dir'] . '/realmstatus.php" />
now this outputs
- Code: Select all
http://yoursite.com/modules.php?name=Roster/realmstatus.php
which just doesn't work
so i tried changing that to
- Code: Select all
<img alt="WoW Server Status" src="' . $roster_conf['roster_dir'] . '&op=realmstatus" />
and adding
- Code: Select all
case "realmstatus":
require($roster_dir.'/realmstatus.php');
break;
by all accounts this 'should' of worked but it didn't problay due to the fact the modules.php file wasn't designed to output images so i'm currently hunting through the Siggen files for the Nuke port as this does work and as far as i know this uses the GD2 library aswell, but i'm abit of a noob to PHP code
any help would be welcomed