Advanced Visual Confirmation SQL
Verfasst: 21.08.2007 16:41
Hallo ich bin dabei den Advanced Visual Confirmation zu installieren.
Also die Dateien per Hand ändern ist kein Problem, aber wie das mit dem SQL geht das weiß ich nicht. Ich bin bei all inkl. (MySQL 4.0.23-Max-log)
kann mir jemand sagen wie das jetzt genau geht.
Vielen Dank
Nina
Also die Dateien per Hand ändern ist kein Problem, aber wie das mit dem SQL geht das weiß ich nicht. Ich bin bei all inkl. (MySQL 4.0.23-Max-log)
kann mir jemand sagen wie das jetzt genau geht.
Vielen Dank
Nina
Code: Alles auswählen
#
#----------[ SQL ]--------------------------------------
#
# Run the following SQL statement to update your phpBB database.
# You can use phpMyAdmin or a similar tool to run this update.
#
# IMPORTANT: If you have changed the table prefix from the default of phpBB2,
# please be sure to replace phpbb with your prefix BEFORE running this update.
#
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...........
ALTER TABLE `phpbb_confirm` CHANGE `code` `code` CHAR(10) NOT NULL;