Quetsa permette di disabilitare i doppi post in un determinato forum/categoria.
Nell'installazione di essa non ho avuto alcun tipo di problema, però quando devo eseguire una piccola query che trovo nell' install.xml mi dice:
Codice: Seleziona tutto
query SQL:
ALTER TABLE phpbb_forums ADD adp_enable tinyint( 1 ) NOT NULL DEFAULT 1;
Messaggio di MySQL: Documentazione
#1060 - Duplicate column name 'adp_enable'
La query che faccio è la seguente:
Codice: Seleziona tutto
ALTER TABLE phpbb_forums ADD adp_enable tinyint(1) NOT NULL DEFAULT 1;
ALTER TABLE phpbb_forums ADD adp_admins tinyint(1) NOT NULL DEFAULT 0;
ALTER TABLE phpbb_forums ADD adp_modos tinyint(1) NOT NULL DEFAULT 0;
ALTER TABLE phpbb_forums ADD adp_auto_edit tinyint(1) NOT NULL DEFAULT 1;
ALTER TABLE phpbb_forums ADD adp_text_edit varchar(255) NOT NULL DEFAULT '-- %D --';
ALTER TABLE phpbb_forums ADD adp_always tinyint(1) NOT NULL DEFAULT 1;
ALTER TABLE phpbb_forums ADD adp_days int(11) NOT NULL DEFAULT 1;
ALTER TABLE phpbb_forums ADD adp_hours int(11) NOT NULL DEFAULT 0;
ALTER TABLE phpbb_forums ADD adp_mins int(11) NOT NULL DEFAULT 0;
ALTER TABLE phpbb_forums ADD adp_secs int(11) NOT NULL DEFAULT 0;
Spero possiate aiutarmi
