Topics
Quelle:
http://www.websitebaker.org/forum/index ... 815.0.html
Getestete Version:
0.9.0-rc
Getestet mit BlackCat Version:
1.1
Ergebnis Installation:
FEHLGESCHLAGEN
Problem mit mysql strict beim Eintragen des Droplets topics_rss_statistic (Spalten 'id' und 'modified_by')
Ergebnis Seite hinzufügen (bei Seitenmodul):
FEHLGESCHLAGEN
Problem mit mysql strict beim Eintragen der Einstellungen
"Field 'section_description' doesn't have a default value"
"Field 'comments_footer' doesn't have a default value"
Fix:
Code: Alles auswählen
ALTER TABLE `cat_mod_topics_settings`
CHANGE COLUMN `section_description` `section_description` TEXT NULL AFTER `section_title`;
ALTER TABLE `cat_mod_topics_settings`
CHANGE COLUMN `comments_footer` `comments_footer` TEXT NULL AFTER `comments_loop`;
Darstellung im Frontend:
Topics werden nicht angezeigt, obwohl im Backend vorhanden und auf "öffentlich" konfiguriert.
Edit: Lag wohl an der Einstellung (Preset) "Eventkalender", mit "News" geht's.
Darstellung im Backend:
Optionen -> OK
Hilfe -> OK
Hinzufügen -> mysql strict Fehler
"Field 'modified_by' doesn't have a default value"
"Field 'link' doesn't have a default value"
"Field 'content_short' doesn't have a default value"
"Field 'content_long' doesn't have a default value"
"Field 'content_extra' doesn't have a default value"
"Field 'pnsa_cache' doesn't have a default value"
Fix:
Code: Alles auswählen
ALTER TABLE `cat_mod_topics`
CHANGE COLUMN `modified_by` `modified_by` TEXT NULL AFTER `posted_by`;
ALTER TABLE `cat_mod_topics`
CHANGE COLUMN `link` `link` TEXT NULL AFTER `position`;
ALTER TABLE `cat_mod_topics`
CHANGE COLUMN `content_short` `content_short` TEXT NULL AFTER `is_master_for`;
ALTER TABLE `cat_mod_topics`
CHANGE COLUMN `content_long` `content_long` LONGTEXT NULL AFTER `content_short`;
ALTER TABLE `cat_mod_topics`
CHANGE COLUMN `content_extra` `content_extra` TEXT NULL AFTER `content_long`;
ALTER TABLE `cat_mod_topics`
CHANGE COLUMN `pnsa_cache` `pnsa_cache` TEXT NULL AFTER `txtr3`;
Sonstige Beobachtungen:
Es gibt Probleme mit dem Setzen des Start- und Endedatums. Bei mir war die Uhrzeit -1 Stunde, weshalb dann immer die Meldung kam, daß das Start-Datum in der Vergangenheit liegt.