Mh also include/templates/user/box_login.htm gibt es bei mir nicht sonder nur boxen_login.htm und da kann man das nicht einstellen..
den code den du über mir geschrieben hast habe ich hier gefunden
includes/boxes/login.php
un dieser sieht nun so aus:
<?php
# Copyright by Manuel
# Support www.ilch.de
defined ('main') or die ( 'no direct access' );
$tpl = new tpl ( 'user/boxen_login.htm' );
if ( loggedin() ) {
if ( user_has_admin_right($menu,false) ) {
$tpl->set ( 'ADMIN', '<a class="box" href="admin.php?admin">'.$lang['adminarea'].'</a>' );
} else {
$tpl->set ( 'ADMIN', '' );
}
if ( $allgAr['Fpmf'] == 1 ) {
$erg = db_query("SELECT COUNT(id) FROM `prefix_pm` WHERE gelesen = 0 AND status < 1 AND eid = ".$_SESSION['authid']);
$check_pm = db_result($erg,0);
$nachrichten_link = '<a class="box" href="index.php?forum-privmsg">'.$lang['messages'].'</a> ('.$check_pm.')<br>';
} else {
$nachrichten_link = '';
}
$tpl->set ( 'SID' , session_id() );
$tpl->set ( 'NACHRICHTEN' , $nachrichten_link );
$tpl->set ( 'NAME', $_SESSION['authname'] );
$tpl->out (0);
} else {
if (empty($_POST['login_name'])) { $_POST['login_name'] = 'Nickname'; }
if (empty($_POST['login_pw'])) { $_POST['login_pw'] = 'ääääääää'; }
$regist = '';
if ( $allgAr['forum_regist'] == 1 ) {
$regist = ' <a href="index.php?user-regist">'.$lang['register'].'</a>';
}
// Original
//$tpl->set_ar_out ( array ( 'regist' => $regist, 'wdlink' => '?'.$allgAr['smodul'], 'PASS' => $_POST['login_pw'], 'NAME' => $_POST['login_name'] ) , 1 );
// Neu
$tpl->set_ar_out ( array ( 'regist' => $regist, 'wdlink' => '?gallery' , 'PASS' => $_POST['login_pw'], 'NAME' => $_POST['login_name'] ) , 1 );
}
unset($tpl);
?>
wiederum sieht der andere code der sich hier befindet
includes/contents/user/login.php
<?php
defined ('main') or die ( 'no direct access' );
$title = $allgAr['title'].' :: Login';
$hmenu = $extented_forum_menu.'Login'.$extented_forum_menu_sufix;
$tpl = new tpl ( 'user/login.htm' );
if ( loggedin() ) {
$design = new design ( $title , $hmenu, 0);
$design->header();
if (isset($_POST['wdlink'])) { $wd = $_POST['wdlink']; }
else { $wd = 'index.php?gallery'.$allgAr['smodul']; }
wd ($wd, $lang['yourareloged']);
$design->footer();
} else {
$design = new design ( $title , $hmenu );
$design->header();
$tpl = new tpl ( 'user/login.htm' );
$tpl->set_out('WDLINK','index.php?gallery',0);
$design->footer();
}
?>
so aus
es gibt keine Fehlermeldung ich logge mich normal ein ich komme halt nur nicht auf die gallery seite sondern auf die normale news seite..
ich weiß nicht mehr weiter