Zoals de titel doet vermoeden ik wil terug naar het orgineel.
Nu is er schijnbaar iets gewijzigd in de database buiten de de extra tabel. Deze heb ik al verwijderd. Mij gaat het om het rode zinnetje. Wat doet het en wat is de ongewijzigde regel?
CREATE TABLE `phpbb_captcha_config` (
`config_name` varchar(255) NOT NULL default '',
`config_value` varchar(100) NOT NULL default '',
PRIMARY KEY (`config_name`)
) TYPE=MyISAM;
INSERT INTO `phpbb_captcha_config` VALUES ('width', '350');
INSERT INTO `phpbb_captcha_config` VALUES ('height', '90');
INSERT INTO `phpbb_captcha_config` VALUES ('background_color', '#E5ECF9');
INSERT INTO `phpbb_captcha_config` VALUES ('jpeg', '0');
INSERT INTO `phpbb_captcha_config` VALUES ('jpeg_quality', '50');
INSERT INTO `phpbb_captcha_config` VALUES ('pre_letters', '0');
INSERT INTO `phpbb_captcha_config` VALUES ('pre_letters_great', '0');
INSERT INTO `phpbb_captcha_config` VALUES ('font', '0');
INSERT INTO `phpbb_captcha_config` VALUES ('chess', '0');
INSERT INTO `phpbb_captcha_config` VALUES ('ellipses', '1');
INSERT INTO `phpbb_captcha_config` VALUES ('arcs', '0');
INSERT INTO `phpbb_captcha_config` VALUES ('lines', '1');
INSERT INTO `phpbb_captcha_config` VALUES ('image', '0');
INSERT INTO `phpbb_captcha_config` VALUES ('gammacorrect', '0.8');
INSERT INTO `phpbb_captcha_config` VALUES ('foreground_lattice_x', '15');
INSERT INTO `phpbb_captcha_config` VALUES ('foreground_lattice_y', '15');
INSERT INTO `phpbb_captcha_config` VALUES ('lattice_color', '#FFFFFF');
ALTER TABLE `phpbb_confirm` CHANGE `code` `code` CHAR(10) NOT NULL;
Advanced Visual Confirmation ongedaan maken
Forumregels
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.

Advanced Visual Confirmation ongedaan maken
Last edited by Kazango on Sat sep 23, 2004 6:35 am; edited 458 times in total
Re: Advanced Visual Confirmation ongedaan maken
Voer deze query uit
Code: Selecteer alles
ALTER TABLE `phpbb_confirm` CHANGE `code` `code` CHAR(6) NOT NULL;
Re: Advanced Visual Confirmation ongedaan maken
Yep idd, had het kunnen weten. Een edit was van 6 naar 10 in profile_add_body.tpl
In ieder geval bedankt voor je snelle respons
In ieder geval bedankt voor je snelle respons

Last edited by Kazango on Sat sep 23, 2004 6:35 am; edited 458 times in total