[phpBB] Erreur rencontrée suite à l'installation du mod pseudo subforum
Bonjour,
Ayant un problème avec les icônes du mod pseudo subforum sur un forum phpbb on ma dit de supprimer avec cette ligne ce fichier :
Code:
DELETE lang_quick_title.php file in your language directories
Et de faire ces modifs :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| RENAME TABLE phpbb_title_infos TO phpbb_attributes;
ALTER TABLE phpbb_attributes CHANGE id attribute_id INT(11) auto_increment NOT NULL;
ALTER TABLE phpbb_attributes CHANGE title_info attribute VARCHAR(255) DEFAULT '' NOT NULL;
ALTER TABLE phpbb_attributes CHANGE info_color attribute_color VARCHAR(6) DEFAULT '' NOT NULL;
ALTER TABLE phpbb_attributes CHANGE date_format attribute_date_format VARCHAR(25) NOT NULL;
ALTER TABLE phpbb_attributes CHANGE title_pos attribute_position TINYINT(1) DEFAULT '0' NOT NULL;
ALTER TABLE phpbb_attributes CHANGE admin_auth attribute_administrator TINYINT(1) DEFAULT '0';
ALTER TABLE phpbb_attributes CHANGE mod_auth attribute_moderator TINYINT(1) DEFAULT '0';
ALTER TABLE phpbb_attributes CHANGE poster_auth attribute_author TINYINT(1) DEFAULT '0';
ALTER TABLE phpbb_attributes DROP INDEX id, ADD PRIMARY KEY (attribute_id);
ALTER TABLE phpbb_topics CHANGE title_compl_infos topic_attribute VARCHAR(255);
ALTER TABLE phpbb_topics CHANGE title_compl_color topic_attribute_color VARCHAR(6) DEFAULT '' NOT NULL;
ALTER TABLE phpbb_topics CHANGE title_pos topic_attribute_position TINYINT(1) DEFAULT '0' NOT NULL;
ALTER TABLE phpbb_topics ADD topic_attribute_username VARCHAR(25) DEFAULT '' NOT NULL;
ALTER TABLE phpbb_topics ADD topic_attribute_date VARCHAR(25) DEFAULT '0' NOT NULL; |
J'ai cette erreur maintenant quand je clique sur un message donc je voudrais savoir comment je pourrais faire pour remettre mon forum en fonction.
Erreur:
Code:
1 2 3 4 5 6 7 8 9 10
| Could not obtain topic information
DEBUG MODE
SQL Error : 1054 Unknown column 't.title_compl_infos' in 'field list'
SELECT t.topic_id, t.topic_title, t.topic_status, t.topic_replies, t.topic_time, t.topic_type, t.topic_vote, t.topic_last_post_id, t.title_compl_infos, t.title_compl_color, t.title_pos, f.forum_name, f.forum_status, f.forum_id, f.auth_view, f.auth_read, f.auth_post, f.auth_reply, f.auth_edit, f.auth_delete, f.auth_sticky, f.auth_announce, f.auth_pollcreate, f.auth_vote, f.auth_attachments, f.attached_forum_id FROM phpbb_topics t, phpbb_forums f WHERE t.topic_id = 444 AND f.forum_id = t.forum_id
Line : 162
File : viewtopic.php |
Merci d'avance.