Fehler Meldung nach Login nach RC3->RC4 update
Verfasst: 06.08.2007 05:00
HAllo,
Ich habe vor kurzem mein Forum von RC3 auf RC4 upgedated
Und nun bekomme nach dem Einloggen folgende Fehlermeldung
Zur Info die entsprechenden sprintf Zeile in meiner Index.php
in meiner index.php.bak Datei siehts so aus
Die in der Fehler Meldung angesprochenen functions.php Datei ziege ich euch bei Bedarf. Ich vermute mal das es sich um eine Folgefehler handelt.
Also kann mir jemand einen Tipp geben bevor ich selber mein Forum kaputt repariere.
Danke, Dirk
Ich habe vor kurzem mein Forum von RC3 auf RC4 upgedated
Und nun bekomme nach dem Einloggen folgende Fehlermeldung
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file /index.php on line 104: sprintf() [function.sprintf]: Too few arguments
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4181: Cannot modify header information - headers already sent by (output
started at /includes/functions.php:3692)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4183: Cannot modify header information - headers already sent by (output
started at /includes/functions.php:3692)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4184: Cannot modify header information - headers already sent by (output
started at /includes/functions.php:3692)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4185: Cannot modify header information - headers already sent by (output
started at /includes/functions.php:3692)
Code: Alles auswählen
$template->assign_vars(array(
'TOTAL_POSTS' => sprintf($user->lang[$l_total_post_s], $total_posts),
'TOTAL_TOPICS' => sprintf($user->lang[$l_total_topic_s], $total_topics),
'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
'NEWEST_USER' => sprintf($user->lang['NEWEST_USER'], get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])),
Code: Alles auswählen
'TOTAL_POSTS' => sprintf($user->lang[$l_total_post_s], $total_posts),
'TOTAL_TOPICS' => sprintf($user->lang[$l_total_topic_s], $total_topics),
'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
'NEWEST_USER' => sprintf($user->lang['NEWEST_USER'], '<a href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=viewprofile&u=' . $newest_uid) . '"' . (($config['newest_user_colour']) ? ' style="color:#' . $config['newest_user_colour'] . '"' : '') . '>', $newest_user, '</a>'),
Also kann mir jemand einen Tipp geben bevor ich selber mein Forum kaputt repariere.
Danke, Dirk