Re: Include fehler?? CAPTCHA
Verfasst: 05.03.2010 19:55
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
53 function &get_instance()
54 {
55 $instance =& new phpbb_captcha_gd();
56 return $instance;
57 }
Code: Alles auswählen
53 function &get_instance()
54 {
55 $instance = new phpbb_captcha_gd();
56 return $instance;
57 }
Bei mir geht das aber dann immer noch nicht!spinwitch hat geschrieben:Problem ist gelöst!![]()
Ich habe im Forum von square7 einen Rat bekommen und ihn umgesetzt. Warum es funktioniert weiß ich (noch) nicht, aber ich zeig einfach mal, was ich gemacht habe.
alter Code der phpbb_captcha_gd_plugin.php (das ist die Datei, die angemeckert wird):Ich habe in Zeile 55 das &-Zeichen entfernt, der neue Code sieht so aus:Code: Alles auswählen
53 function &get_instance() 54 { 55 $instance =& new phpbb_captcha_gd(); 56 return $instance; 57 }
Bei mir geht das aber trotzdem ned -.-Code: Alles auswählen
53 function &get_instance() 54 { 55 $instance = new phpbb_captcha_gd(); 56 return $instance; 57 }
Jetzt funktioniert die Registrierung, das Captcha wird fehlerfrei angezeigt.
Fröhliche Grüße von der spinwitch
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4284: Cannot modify header information - headers already sent by (output started at /includes/captcha/plugins/phpbb_captcha_gd_plugin.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4286: Cannot modify header information - headers already sent by (output started at /includes/captcha/plugins/phpbb_captcha_gd_plugin.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4287: Cannot modify header information - headers already sent by (output started at /includes/captcha/plugins/phpbb_captcha_gd_plugin.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4288: Cannot modify header information - headers already sent by (output started at /includes/captcha/plugins/phpbb_captcha_gd_plugin.php:1)
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4284: Cannot modify header information - headers already sent by (output started at /includes/captcha/plugins/phpbb_captcha_gd_plugin.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4286: Cannot modify header information - headers already sent by (output started at /includes/captcha/plugins/phpbb_captcha_gd_plugin.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4287: Cannot modify header information - headers already sent by (output started at /includes/captcha/plugins/phpbb_captcha_gd_plugin.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4288: Cannot modify header information - headers already sent by (output started at /includes/captcha/plugins/phpbb_captcha_gd_plugin.php:1)