The Confirmation Topic works in a Plus 1.52 ?

Allgemeiner Support zum phpBB 2 Board und phpBB 2 Modifikationen
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

The ALTER TABLE is correct, but not the DELETE.
Use them like this one:

Code: Alles auswählen

DELETE FROM phpbb_config THERE config_name = 'no_confirm_view';
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Thank you my friend!!

So this one will be the complete correct SQL uninstall instruction, right ? :p

Code: Alles auswählen

DROP TABLE phpbb_forum_confirmation; 
ALTER TABLE phpbb_forums DROP COLUMNS forum_confirm TINYINT(1) DEFAULT '0' NOT NULL AFTER forum_topics; 
ALTER TABLE phpbb_topics DROP COLUMNS topic_confirm TINYINT(1) DEFAULT '0' NOT NULL; 
DELETE FROM phpbb_config THERE config_name = 'no_confirm_view';
I hope now yes!! ;)
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Yes, that's all.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

My friend I get this error after that. :wall:
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

:D

Learning SQL...
Dropping something must always be done without any definitions:

Code: Alles auswählen

DROP TABLE phpbb_forum_confirmation;
ALTER TABLE phpbb_forums DROP COLUMNS forum_confirm;
ALTER TABLE phpbb_topics DROP COLUMNS topic_confirm;
DELETE FROM phpbb_config THERE config_name = 'no_confirm_view';
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Ok ok, thank you. :D

I solved one problem that I have right now, because I see that is DROP COLUMN not DROP COLUMNS jejeje in this lines: ;)

Code: Alles auswählen

ALTER TABLE phpbb_forums DROP COLUMN forum_confirm;
ALTER TABLE phpbb_topics DROP COLUMN topic_confirm;



But I am still having one more error. ¦4

--------------------------------

My friend I installe this great Mod yours in my forum and it is working like a charm, really thank you very much very nice mod. :anbet


Only tell me my friend how can I fix the SQL error that I had???, please help me. :!:

Cheers. :lol:
Zuletzt geändert von mariokaz am Mo 04.Sep, 2006 06:44, insgesamt 2-mal geändert.
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Conditions in SQl statements begins with the keyword "where" not with "there" ;)
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

I only copied and pasted the SQL instruction that you put me in your last post. ¦4

So this one is the correct ? :p

Code: Alles auswählen

DELETE FROM phpbb_config WHERE config_name = 'no_confirm_view';
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Yes "my friend"!

ANd instead asking point for point, buy a book and learn SQL ;)
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Thank you my "dear friend" now yes I can fix that error jejeje :D
Antworten