Seite 1 von 1

Topic Calender: Kann keine Einträge erzeugen

Verfasst: 28.11.2004 12:59
von Gregstar
Ich habe leider das Problem, dass wenn ich ein neues Thema erzeuge und ein Datum dafür einstelle, es nicht in den Calender übernommen wird. Alle Dateien sind ordnungsgemäß raufgeladen. Ich weiß echt nicht mehr weiter, hab auch schon den Code nochmal probiert. Weiß vl jemand weiter?

MfG
Gregstar

Verfasst: 28.11.2004 14:40
von kratzer54847
Hast du das Datenbankupdate durchgeführt?

mfg Johny

Verfasst: 28.11.2004 14:43
von Gregstar
Wenn du den hier meinst, dann ja:

Code: Alles auswählen

#
#-----[ SQL ]-------------------------------------------------
#
ALTER TABLE phpbb_topics ADD topic_calendar_time INT(11);
ALTER TABLE phpbb_topics ADD topic_calendar_duration INT(11);
ALTER TABLE phpbb_topics ADD INDEX (topic_calendar_time);

ALTER TABLE phpbb_auth_access ADD auth_cal TINYINT(1) DEFAULT '0' NOT NULL;
ALTER TABLE phpbb_forums ADD auth_cal TINYINT(2) DEFAULT '0' NOT NULL;
UPDATE phpbb_auth_access SET auth_cal = auth_sticky;
UPDATE phpbb_forums SET auth_cal = auth_sticky;
#
#-----[ SQL ]-------------------------------------------------
#
# This part is optional : do it only if you want your users to be able to choose their setup
#	if you want so, you'll have to install the MOD-mods_settings mod included in the pack
#
ALTER TABLE phpbb_users ADD user_calendar_display_open TINYINT(1) DEFAULT '0' NOT NULL;
ALTER TABLE phpbb_users ADD user_calendar_header_cells TINYINT(1) DEFAULT '7' NOT NULL;
ALTER TABLE phpbb_users ADD user_calendar_week_start TINYINT(1) DEFAULT '1' NOT NULL;
ALTER TABLE phpbb_users ADD user_calendar_nb_row TINYINT(2) UNSIGNED DEFAULT '5' NOT NULL;
ALTER TABLE phpbb_users ADD user_calendar_birthday TINYINT(1) DEFAULT '1' NOT NULL;
ALTER TABLE phpbb_users ADD user_calendar_forum TINYINT(1) DEFAULT '1' NOT NULL;