Seite 1 von 1

Title Categorie 1.0.3 ?

Verfasst: 08.06.2003 12:23
von mixmax
Habe ein neues Testboard angelegt :lol:
Um den Mod zu Testen.
## Mod Title: Title Categorie
## Mod Version: 1.0.3

Kategorien Controlpanel funzt ! Hab 4 Kategorien erstellt.
Nur kann man nicht Posten :roll:
Es kommt ein Error in posting

Code: Alles auswählen

SQL Error : 1054 Unknown column 'k_id' in 'field list'

INSERT INTO phpbb_topics (topic_title, topic_poster, topic_time, forum_id, topic_status, topic_type, topic_vote, k_id) VALUES ('Test a', 2, 1055066712, 1, 0, 0, 0, 1)

Line : 256
File : /home/virtual/site22/fst/var/www/html/phpBB2/includes/functions_post.php
--------Add Table in you Mysql DB----------

CREATE TABLE `phpbb_topic_cat` (
`k_id` INT(11) AUTO_INCREMENT PRIMARY KEY,
`forum_id` INT(11),
`kategorie` TEXT
);

ALTER TABLE `topics` ADD `k_id` INT(10) DEFAULT '0';

Wenn ich das ausführen will kommt :
MySQL meldet:
Table 'phpbb_topic_cat' already exists

Verfasst: 05.11.2003 22:35
von msilver
das selbe problem habe ich auch just in diesem moment, schon sehr schlecht :o

Verfasst: 05.11.2003 22:40
von Leuchte

Code: Alles auswählen

ALTER TABLE `topics` ADD `k_id` INT(10) DEFAULT '0';
hast du da keinen prefix davor? z.b.
ALTER TABLE `phpbb_topics` ADD `k_id` INT(10) DEFAULT '0';

Verfasst: 05.11.2003 22:51
von msilver
thx für support, dat wars ;)