ich habe schon alles mögliche durchgelesen...kann den Fehler leider nicht finden.

Bekomme nach update auf 2.0.11 über http://www.phpbbhacks.com/forums/viewtopic.php?t=40590
und dann kontrolliert und geändert (der functions.php) mit
http://www.phpbb.com/phpBB/viewtopic.php?t=240611
Die Datei hab ich im richtigen Ordner (usercp_confirm.php) und diese hab ich auch erfolgreich ausgeführt (update_to_2011.php)...in der Datenbank ist die Tabelle angelegt. In der Datenbank steht unter phpbb_config...enable_confirm der Wert 0
Die Fehlermeldung ist:
Code: Alles auswählen
Warning: Wrong parameter count for rtrim() in /data/httpd/htdocs/phpBB2/includes/functions.php on line 80
Warning: Cannot add header information - headers already sent by (output started at /data/httpd/htdocs/phpBB2/includes/functions.php:80) in /data/httpd/htdocs/phpBB2/includes/page_header.php on line 582
Warning: Cannot add header information - headers already sent by (output started at /data/httpd/htdocs/phpBB2/includes/functions.php:80) in /data/httpd/htdocs/phpBB2/includes/page_header.php on line 584
Warning: Cannot add header information - headers already sent by (output started at /data/httpd/htdocs/phpBB2/includes/functions.php:80) in /data/httpd/htdocs/phpBB2/includes/page_header.php on line 585
Zimbo Diskussionsforum Foren-Übersicht
Code: Alles auswählen
// added at phpBB 2.0.11 to properly format the username
function phpbb_clean_username($username)
{
$username = htmlspecialchars(rtrim(trim($username), "\\"));
$username = substr(str_replace("\\'", "'", $username), 0, 25);
$username = str_replace("'", "\\'", $username);
return $username;
}

1000 Dank