ich habe gerade den o.g. MOD installiert.
Bei der SQL-Konfiguration gem. Anleitung
Code: Alles auswählen
CREATE TABLE phpbb_announcement_centre (
announcement_show tinyint (1) NOT NULL,
announcement_enable_guests tinyint (1) NOT NULL,
announcement_show_birthdays tinyint (1) NOT NULL,
announcement_birthday_avatar tinyint (1) NOT NULL,
announcement_draft text NOT NULL,
announcement_text text NOT NULL,
announcement_text_guests text NOT NULL,
announcement_title varchar(255) NOT NULL default '',
announcement_title_guests varchar(255) NOT NULL default '',
announcement_show_group varchar(255) NOT NULL default '')
CHARACTER SET utf8 COLLATE utf8_bin;
INSERT INTO phpbb_announcement_centre (announcement_show, announcement_enable_guests, announcement_show_birthdays, announcement_birthday_avatar, announcement_title, announcement_text, announcement_draft, announcement_title_guests, announcement_text_guests, announcement_show_group) VALUES ('0', '1', '0', '0', 'Site Announcements', '[color=red][b]Site Announcements[/b][/color] can be seen here!! :mrgreen:', '[color=red][b]Draft Announcements[/b][/color] can be seen here!! :mrgreen:', 'Guest Announcements', '[color=green][b]Guest Announcements[/b][/color] can be seen here!! :wink:', '2');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('announcement_show_index', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('announcement_enable', '1');
Code: Alles auswählen
#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 'COLLATE utf8_bin' at line 12
Leider kenne ich mich mit SQL nicht wirklich aus und die Suche hat mich auch nicht weitergebracht.
EDIT
indem ich die Zeile
Code: Alles auswählen
CHARACTER SET utf8 COLLATE utf8_bin
Die Announcement-Box wird jetzt angezeigt. Allerdings nur auf englisch, obwohl ich die deutschen Sprachdateien auch hochgeladen haben.
Im ACP gibt es allerdings keine Möglichkeiten den MOD zu konfigurieren.
Hat jemand eine Idee???
Vielen Dank.
Christian