mein TExtual Confirmation Modul findet offenbar eine Datenbanktabelle nicht. (Fehlermeldung siehe unten).
Woran kann das liegen? In phpadmin (phpMyAdmin 2.6.4-pl3) wird
mir die Tabelle angezeigt.
Code: Alles auswählen
Could not insert question/answer pair!
DEBUG MODE
SQL Error : 1146 Table 'd002f7c3.TEXTUAL_CONFIRMATION_TABLE' doesn't exist
INSERT INTO TEXTUAL_CONFIRMATION_TABLE(question,answers) VALUES('Alles Klar?','ja')
Line : 113
File : admin_tc.php
Code: Alles auswählen
SQL-Befehl:
CREATE TABLE phpbb_textual_confirmation(
id INTEGER NOT NULL AUTO_INCREMENT ,
question TEXT NOT NULL ,
answers TEXT NOT NULL ,
PRIMARY KEY ( id )
);# MySQL lieferte ein leeres Resultat zurück (d.h. null Zeilen).
INSERT INTO phpbb_textual_confirmation( question, answers )
VALUES (
'Are you human?', 'yes\nja\noui'
);# Betroffene Datensätze: 1
INSERT INTO phpbb_textual_confirmation( question, answers )
VALUES (
'Say hello', 'hello\nhi\nhallo'
);# Betroffene Datensätze: 1