Ich habe mir den Super Moderator Mod installiert.Jetzt habe ich unten stehen:
Wenn ich jedoch auf "Administrations-Bereich" klicke, lande ich wieder auf der index-Seite des Forums?? Der Link ist aber richtig, der geht zu admin/index.php... aber ich lande wieder auf der normalen index.php. Scheint so, also wäre da ein redirect auf der admin/index.php, so sieht das aus. Sehr komisch, jedenfalls komme ich nicht mehr in den Admin-Bereich... was soll ich denn jetzt tunAdministrations-Bereich
Go to Super Moderators Panel

ein anderes Problem habe ich auch noch:
den gesuchten Code gibt es auf der index.php nicht (habe phpbb 2.0.10)#-----[ FIND ]------------------------------------------
#
//THIS IS FOR WHO VISITED BOARD TODAY MOD.. MAY BE ON YOUR INDEX.PHP FILE
if( $todayrow['user_level'] == ADMIN )
{
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
//THIS IS FOR WHO VISITED BOARD TODAY MOD.. MAY BE ON YOUR INDEX.PHP FILE
else if( $todayrow['user_level'] == LESS_ADMIN )
{
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor4'] . '"';
}
#
wenn ich es so einfüge:
gibt es einen Error...case ADMIN :
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
else if( $todayrow['user_level'] == LESS_ADMIN )
{
$todayrow['username'] = '<b>' . $todayrow['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor4'] . '"';
}
ist denn der Mod überhaupt phpbb 2.0.10 tauglich?
Für Info wäre ich dankbar
