sql tables

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!
Antworten
Blisk
Beiträge: 873
Registriert: Di 21.Sep, 2004 12:06
Kontaktdaten:

sql tables

Beitrag von Blisk »

I noticed that I don't have this tables in my mysql.
I tryed to update with file but doesn't work.
how to vrite this tables manually in phpmyadmin or execute it in phpmyadmin?

Code: Alles auswählen

'INSERT INTO '.$table_prefix.'plus VALUES ("enable_shorturls", "0")',
'INSERT INTO '.$table_prefix.'plus VALUES ("disable_sid", "0")',
'INSERT INTO '.$table_prefix.'plus VALUES ("enable_antirobot", "1")',
'INSERT INTO '.$table_prefix.'plus VALUES ("enable_banners", "1")',
'INSERT INTO '.$table_prefix.'plus VALUES ("enable_confirm_post", "0")',
'UPDATE '.$table_prefix.'config SET config_value = "'.$forum_version.'" WHERE config_name = "version"',
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Code: Alles auswählen

INSERT INTO phpbb_plus VALUES ("enable_shorturls", "0"); 
INSERT INTO phpbb_plus VALUES ("disable_sid", "0");
INSERT INTO phpbb_plus VALUES ("enable_antirobot", "1");
INSERT INTO phpbb_plus VALUES ("enable_banners", "1");
INSERT INTO phpbb_plus VALUES ("enable_confirm_post", "0"); 
UPDATE phpbb_config SET config_value = ".0.21" WHERE config_name = "version";
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!
Blisk
Beiträge: 873
Registriert: Di 21.Sep, 2004 12:06
Kontaktdaten:

Beitrag von Blisk »

thanks, now I will know for the future.
Antworten