MyBB.de Forum
SQL Fehler beim Inline thread Popup Plugin - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html)
+--- Thema: SQL Fehler beim Inline thread Popup Plugin (/thread-2338.html)



SQL Fehler beim Inline thread Popup Plugin - Mak - 13.06.2006

Zitat:mySQL error: 1064
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 't want it.', 'text', 'Subject:', '6', '39')' at line 1
Query: INSERT INTO mybb_settings (sid, name, title, description, optionscode, value, disporder, gid) VALUES ('NULL', 'pcssp_subject_la', 'Subject language string', 'The "Subject:" language string. Leave empty if you don't want it.', 'text', 'Subject:', '6', '39');

Ich habe nicht viel Ahnung von SQL, hoffe, mir kann jemand helfen... Sind die Plugins nicht getestet?


RE: SQL Fehler beim Inline thread Popup Plugin - Ice4Tea - 13.06.2006

Hi,
ja, das selbe problem habe ich auch !!

Hoffentlich weiss jemand wie man das Plugin zum laufen bringt !!

Auch sind die jpg dateien nicht beschrieben wohin sie sollen.

Gruss

Ice4Tea


RE: SQL Fehler beim Inline thread Popup Plugin - Mak - 13.06.2006

DIe jpgs deinen nur zur Demonstration. Die musst du gar nicht hochladen. Das löst nur leider das Problem nicht...


RE: SQL Fehler beim Inline thread Popup Plugin - StefanT - 13.06.2006

Der Fehler ist, dass ein \ vor dem ' in
Code:
The "Subject:" language string. Leave empty if you don't want it.
fehlt. Dass sollte so heißen:
Code:
INSERT INTO mybb_settings (sid, name, title, description, optionscode, value, disporder, gid) VALUES ('NULL', 'pcssp_subject_la', 'Subject language string', 'The "Subject:" language string. Leave empty if you don\'t want it.', 'text', 'Subject:', '6', '39');



RE: SQL Fehler beim Inline thread Popup Plugin - Ice4Tea - 13.06.2006

Das hab ich mir fast gedacht !

Gruss

Ice4Tea


RE: SQL Fehler beim Inline thread Popup Plugin - Ice4Tea - 13.06.2006

Auch muss noch der Code

"description=> "The \"Message:\" language string. Leave empty if you don\'t want it.",

mit \ verändert werden !!

Also

Gruss

Ice4Tea


RE: SQL Fehler beim Inline thread Popup Plugin - Jochen2003 - 13.06.2006

was muß denn wo genau geändert werden??


RE: SQL Fehler beim Inline thread Popup Plugin - Mak - 13.06.2006

Suche in der Datei pcssp.php:

Code:
        "description"    => "The \"Message:\" language string. Leave empty if you don't want it.",
und
Code:
        "description"    => "The \"Subject:\" language string. Leave empty if you don't want it.",

und füge vor dem ' im don't immer ein \ ein, also: don\'t



RE: SQL Fehler beim Inline thread Popup Plugin - Jochen2003 - 13.06.2006

Ja Danke, hab es aber wieder deaktiviert, so dolle ist das PlugIn nicht eher verwirrend


RE: SQL Fehler beim Inline thread Popup Plugin - Michael - 13.06.2006

https://www.mybb.de/forum/showthread.php?tid=2342&pid=14472#pid14472