Probleme beim login VISKEY

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Antworten
neunauge
Mitglied
Beiträge: 6
Registriert: 22.09.2005 20:09
Kontaktdaten:

Probleme beim login VISKEY

Beitrag von neunauge »

Hallo,

wenn ich mich als neuer User in meinem Forum einloggen will kommt die folgende Fehlermeldung, allerdings haben es in den letzen Tagen auch User geschafft sich neu anzumelden. Kennt jemand das Problem bzw. hat einen Tipp woher der Fehler kommen kann?

Danke und Gruss
Bernd
_________________________________________________

Could not insert new confirm code information

DEBUG MODE

SQL Error : 1054 Unknown column 'confirm_id' in 'field list'

INSERT INTO phpbb_ct_viskey (confirm_id, session_id, code) VALUES ('775ded912aaf208021d7f8bf3e1129f8', '3157d4918d654cc7f327ef976f81dd7d', '6BLMU2')

Line : 376
File : login.php


und hier ein Ausschnitt aus der Login.php


$confirm_id = md5(uniqid($user_ip));

$sql = 'INSERT INTO ' . CTVISKEY . " (confirm_id, session_id, code)
VALUES ('$confirm_id', '". $userdata['session_id'] . "', '$code')";
if (!$db->sql_query($sql))
{
message_die(GENERAL_ERROR, 'Could not insert new confirm code information', '', __LINE__, __FILE__, $sql);
}

unset($code);

$confirm_image = (@extension_loaded('zlib')) ? '<img src="' . append_sid("login.$phpEx?mode=confirm&id=$confirm_id") . '" alt="" title="" />' : '<img src="' . append_sid("login.$phpEx?mode=confirm&id=$confirm_id&c=1") . '" alt="" title="" /><img src="' . append_sid("login.$phpEx?mode=confirm&id=$confirm_id&c=2") . '" alt="" title="" /><img src="' . append_sid("login.$phpEx?mode=confirm&id=$confirm_id&c=3") . '" alt="" title="" /><img src="' . append_sid("login.$phpEx?mode=confirm&id=$confirm_id&c=4") . '" alt="" title="" /><img src="' . append_sid("login.$phpEx?mode=confirm&id=$confirm_id&c=5") . '" alt="" title="" /><img src="' . append_sid("login.$phpEx?mode=confirm&id=$confirm_id&c=6") . '" alt="" title="" />';
$hidden_form_fields .= '<input type="hidden" name="confirm_id" value="' . $confirm_id . '" />';
Antworten

Zurück zu „phpBB 2.0: Mod Support“