Yep, I went in and edited the config file. Below is a copy of what mine looks like...
- Code: Select all
- <?php
 $versions['versionDate']['raidtracker'] = '$Date: 2006/09/19 $';
 $versions['versionRev']['raidtracker'] = '$Revision: 1.1.3 $';
 $versions['versionAuthor']['raidtracker'] = '$Author: PoloDude $';
 
 //Characters that can update the raids
 $addon_conf['RaidTracker']['RaidUpdaters'] = array(
 'Raffelz','Deathfrmabov',
 );
 
 //where is the itemstats lib
 $addon_conf['RaidTracker']['itemstatsLib'] = "./itemstats";
 $addon_conf['RaidTracker']['itemstatsLibFile'] = "./itemstats.php";
 
 // Date display like "Y-m-d G:i:s", "d-m-Y G:i:s"
 $addon_conf['RaidTracker']['DateView'] = "Y-m-d G:i:s";
 
 // Show loot in one box or seperate by users who won
 $addon_conf['RaidTracker']['SortByUser'] = 0;
 
 /****** DON'T CHANGE ANYTHING BELOW! ******/
 
 //Update Trigger
 $addon_conf['RaidTracker']['UpdateTrigger'] = 1;
 
 // General variables
 $rt_wordings['RaidTracker']['ZoneIcons'] = array(
 "Zul'Gurub" => "zg",
 "Onyxia's Lair" => "onx",
 "Molten Core" => "mc",
 "Blackwing Lair" => "bwl",
 "Ahn'Qiraj Ruins" => "aq20",
 "Ahn'Qiraj Temple" => "aq40",
 "Naxxramas" => "nax",
 "Karazhan" => "kz",
 "Gruul's Lair" => "gl",
 "Magtheridon's Lair" => "mag",
 "Serpentshrine Cavern" => "sc",
 "The Eye" => "tk",
 "World Bosses" => "outdoor",
 "RandomRaidBC" => "outdoor",
 "RandomRaid" => "outdoor",
 );
 
 ?>
 
I have no idea. Also I just noticed I can't upload the profile for some reason. I get some French thing but basically it says I am not authorized to upload the data even though my name is in the list of ppl to do it. Below is what it says when I upload the characterprofiler.lua and the CT_RaidTracker.lua...
- Code: Select all
- Updating CTMod RaidTracker Data from Character [Raffelz]
 utilisateur Raffelz non autorise a uploader les raids
Now when I just upload the CT_RaidTracker.lua file alone I only get a parse message but nothing else.
I also forgot to add that when I click on the Raid name itself I get the following error message...
- Code: Select all
- Fatal error: Call to undefined function: itemstats_parse() in .../roster/addons/RaidTracker/functions.php on line 101
Now looking in my functions.php file line 101 says..
- Code: Select all
- echo itemstats_parse('<td class="membersRow'.$rownum.'">'.utf8_decode($loot_item));
Line 280 says...
- Code: Select all
- echo itemstats_parse(utf8_decode($loot_item));
Not sure but I think it has to do with the itemstats. Not sure if it makes a difference but I do have the itemstats setup for my PHP-Nuke/PBPBB also. They are all ran from the same database but are in separate folders. I have the main itemstats setup as per the instructions from the website.
Running PHP-Nuke 7.9
PHPBB 2.20 
Roster 1.7.3
OS  	Linux
Server Software 	Apache/1.3.33 (Unix)
MySQL Version 	4.0.27-standard-log
PHP Version  	4.4.7
PHP API Type 	cgi
safe_mode 	Off
open_basedir 	Off
allow_url_fopen 	On
file_uploads 	On
upload_max_filesize 	20M
Not sure if the above will help but is some info on my server I use from the rosterdiag page.