Heb jij deze SQL-query ook uitgevoerd?
Code: Selecteer alles
CREATE TABLE phpbb_wpm (
wpm_config_id int(3) NOT NULL,
wpm_enable tinyint(1) unsigned NOT NULL,
wpm_send_id mediumint(8) NOT NULL,
wpm_preview tinyint(1) unsigned NOT NULL,
wpm_variables varchar(255) NOT NULL,
wpm_subject varchar(100) NOT NULL,
wpm_message mediumtext NOT NULL,
wpm_version varchar(255) NOT NULL,
PRIMARY KEY (wpm_config_id)
) ;
INSERT INTO phpbb_wpm (wpm_config_id, wpm_enable, wpm_send_id, wpm_preview, wpm_variables, wpm_subject, wpm_message, wpm_version) VALUES(1, 1, 2, 0, '', 'Welcome to {SITE_NAME}!', 'Hello, [b]{USERNAME}[/b]!\n\nWelcome to {SITE_NAME} ({SITE_DESC})\n\nYou registered on [b]{USER_REGDATE}[/b]. According to your input, your email is [b]{USER_EMAIL}[/b] and you live in timezone [b]{USER_TZ}[/b]. It is nice to know that you speak {USER_LANG_LOCAL}.\n\nYou can contact us here: {BOARD_CONTACT} or here: {BOARD_EMAIL}, whichever you prefer, at anytime. Thank you for choosing us.\n\n-Thank you for registering at {SITE_NAME}!\n\nThanks, {SENDER}', '2.2.5');
http://wiki.phpbb.nl/Sql_query_uitvoeren