Heya,
having probs with the color bars??
Try this... The issue is the path to the images.  What I did was add the $roster_conf['roster_dir'] in front of the image path. now it all werks
Hope this helps
open membersRep.php Should be Line 81 to 120
Change 
- Code: Select all
 if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['exalted'])
      {
        $colorstyle = 'style=\'color : #007662;\'';
      $imgbar = 'addons/reputation/img/barbit_b.gif';   
      }
      else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['revered'])
      {
      $colorstyle = 'style=\'color : #227501;\'';
      $imgbar = 'addons/reputation/img/barbit_g.gif';
      }
    else if($row['standing'] == $wordings[$roster_conf['roster_lang']]['honored'])
    {
        $colorstyle = 'style=\'color : #547301;\'';
        $imgbar = 'addons/reputation/img/barbit_h.gif';
    }
      else if($row['standing'] == $wordings[$roster_conf['roster_lang']]['friendly'])
      {
          $colorstyle = 'style=\'color : #787701;\'';
          $imgbar = 'addons/reputation/img/barbit_f.gif';
      }
     else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['neutral'])
     {
         $colorstyle = 'style=\'color : #A48618;\'';
            $imgbar = 'addons/reputation/img/barbit_y.gif';
     }
     else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['unfriendly'])
     {
         $colorstyle = 'style=\'color : orange;\'';
            $imgbar = 'addons/reputation/img/barbit_o.gif';
     }
     else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['hostile'])
     {
         $colorstyle = 'style=\'color : #974414;\'';
           $imgbar = 'addons/reputation/img/barbit_host.gif';
     }
     else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['hated'])
     {
         $colorstyle = 'style=\'color : #FF3333;\'';
         $imgbar = 'addons/reputation/img/barbit_r.gif';
     }
to 
- Code: Select all
 if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['exalted'])
      {
        $colorstyle = 'style=\'color : #007662;\'';
      $imgbar = $roster_conf['roster_dir'] . '/addons/reputation/img/barbit_b.gif';   
      }
      else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['revered'])
      {
      $colorstyle = 'style=\'color : #227501;\'';
      $imgbar = $roster_conf['roster_dir'] . '/addons/reputation/img/barbit_g.gif';
      }
    else if($row['standing'] == $wordings[$roster_conf['roster_lang']]['honored'])
    {
        $colorstyle = 'style=\'color : #547301;\'';
        $imgbar = $roster_conf['roster_dir'] . '/addons/reputation/img/barbit_h.gif';
    }
      else if($row['standing'] == $wordings[$roster_conf['roster_lang']]['friendly'])
      {
          $colorstyle = 'style=\'color : #787701;\'';
          $imgbar = $roster_conf['roster_dir'] . '/addons/reputation/img/barbit_f.gif';
      }
     else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['neutral'])
     {
         $colorstyle = 'style=\'color : #A48618;\'';
            $imgbar = $roster_conf['roster_dir'] . '/addons/reputation/img/barbit_y.gif';
     }
     else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['unfriendly'])
     {
         $colorstyle = 'style=\'color : orange;\'';
            $imgbar = $roster_conf['roster_dir'] . '/addons/reputation/img/barbit_o.gif';
     }
     else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['hostile'])
     {
         $colorstyle = 'style=\'color : #974414;\'';
           $imgbar = $roster_conf['roster_dir'] . '/addons/reputation/img/barbit_host.gif';
     }
     else if ($row['standing'] == $wordings[$roster_conf['roster_lang']]['hated'])
     {
         $colorstyle = 'style=\'color : #FF3333;\'';
         $imgbar = $roster_conf['roster_dir'] . '/addons/reputation/img/barbit_r.gif';
     }