Habe mich heute gefragt, ob es nicht nett wäre, wenn ein Benutzer, der sich neu auf meinem Portal/Forum registriert, eine Begrüßungs-EMail erhalten würde.
Da ich zu dem faulen Typ Mensch gehöre



Was denkt Ihr?
Gibt's sowas schon..?
LG xconnect
Code: Alles auswählen
CREATE TABLE phpbb_wpm (
wpm_config_id int(3) NOT NULL auto_increment,
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) character set utf8 collate utf8_bin NOT NULL,
wpm_subject varchar(100) character set utf8 collate utf8_bin NOT NULL,
wpm_message mediumtext character set utf8 collate utf8_bin NOT NULL,
wpm_version varchar(255) character set utf8 collate utf8_bin 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.4');
Mir scheint, du hast an dieser Sttelle nich alles in die php eingefügt, oder?xml-Anleitung WPM 2.2.4 hat geschrieben: Open: includes/constants.php
Find
Tip: This may be a partial find and not the whole line.Add beforeCode: Alles auswählen
?>
Tip: Add these lines on a new blank line before the preceding line(s) to find.Code: Alles auswählen
define('WPM_TABLE', $table_prefix . 'wpm');
Code: Alles auswählen
CREATE TABLE IF NOT EXISTS `phpbb_wpm` (
`wpm_config_id` int(3) NOT NULL auto_increment,
`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) character set utf8 collate utf8_bin NOT NULL,
`wpm_subject` varchar(100) character set utf8 collate utf8_bin NOT NULL,
`wpm_message` mediumtext character set utf8 collate utf8_bin NOT NULL,
`wpm_version` varchar(255) character set utf8 collate utf8_bin NOT NULL,
PRIMARY KEY (`wpm_config_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;