Wundert mich nicht, das das nicht funkt. Der Treampage MOD hat auch nichts damit zu tun. Du hast bei BirthdayMOD ein wenig zuviel des guten gemacht.
Man findet in Zeilen 906ff.
if ( @!empty($birthday) )
{
// Borrowed from Birthday Mod by Nils
$this_year = create_date('Y', time(), $board_config['board_timezone']);
$this_date = create_date('md', time(), $board_config['board_timezone']);
$birthdate = realdate('md', $userdata['user_birthday']);
$birth = $this_year - realdate('Y', $userdata['user_birthday']);
}
else
{
$birth = $userdata['user_birth'];
}
und siehe da, ab Zeile 929ff. findet sich
if ( @!empty($birthday) )
{
// Borrowed from Birthday Mod by Nils
$this_year = create_date('Y', time(), $board_config['board_timezone']);
$this_date = create_date('md', time(), $board_config['board_timezone']);
$birthdate = realdate('md', $userdata['user_birthday']);
$birth = $this_year - realdate('Y', $userdata['user_birthday']);
}
else
{
$birth = $userdata['user_birth'];
}
Klar das die (erste doppelte) Variable zu schreien beginnt. Lösche einfach den gesamten zweiten Block
Mit dem Anmelden ist es eine andere Baustelle.
Schau doch mal in der Datenbank. Siehe dazu
Umgang mit phpMyAdmin
und such dir in phpbb_config folgende Informationen
server_name
server_port
script_path
cookie_domain
cookie_name
cookie_path
wartek
Computers are not intelligent - they only think they are.