- Wat is het probleem? Hulp met SQl
Wanneer ontstond het probleem?
Adres van je forum: http://www.iven.nl/mopampaforum
Modifications op je forum:
Huidige stijl:subsilver
phpBB versie: x.0.x
Waar is je forum gehost:Lycos
Heb je onlangs iets verandert aan je forum?Nee
Nu wil ik een nieuwe mod (zie onderstaande) gaan instaleren maar het is al heel lang geleden dat ik dit heb gedaan.
Ik moet nu een SQL actie uitvoeren maar ik weet niet meer hoe ik dit moet doen.
Ik meende dat je dit in het verleden in een soort tabel op het net moest invoegen en die zetten het dan om.
Zou iemand mij weer een eindje op weg kunnen helpen?
##############################################################
## MOD Title: WPM
## MOD Author: Duvelske < Duvelske@vitrax.org > (Richard Wagtmans) http://www.vitrax.org
## MOD Description: This mod gives you in the admin section a panel to control a welcome message
## on registration. You can disable it with the admin panel and type the message send by the mod.
## MOD Support site: http://www.vitrax.org, http://www.phpbb.nl, http://www.phpbb2.de, http://www.phpbb.com
## MOD Version: 1.0.10
## MOD Compatibility: 2.0.4 - 2.0.19
##############################################################
#
#-----[ SQL ]-------------------------------------------------
#
CREATE TABLE phpbb_wpm (name varchar(255) NOT NULL default '', value text NOT NULL) TYPE=MyISAM;
INSERT INTO phpbb_wpm VALUES ('wpm_version', '1.0.9');
INSERT INTO phpbb_wpm VALUES ('active_wpm', '1');
INSERT INTO phpbb_wpm VALUES ('wpm_username', 'Anonymous');
INSERT INTO phpbb_wpm VALUES ('wpm_userid', '-1');
INSERT INTO phpbb_wpm VALUES ('wpm_subject', 'Welcome to [sitename]!');
INSERT INTO phpbb_wpm VALUES ('wpm_message', 'Hi, there [username]!
I hope you enjoy your stay here at [sitename]!
If you have any questions about the site, please ask. If it goes about this mod please
visit: http://www.vitrax.vze.com thnx you!');