[Solved] Problem with the "Topic" field in article types.
  • From the Newscoop version 4.4.0 to 4.4.3, there is an issue with the "Topic" field in article types. All articles having such a article type field will throw blank page.

    If someone is using topics as a article type field and is running Newscoop 4.4.0 - 4.4.3, here is the fix:
    1. Run mysql script:

    CREATE TABLE IF NOT EXISTS `TopicFields` (
    `ArticleType` varchar(166) NOT NULL DEFAULT '',
    `FieldName` varchar(166) NOT NULL DEFAULT '',
    `RootTopicId` int(11) NOT NULL DEFAULT '0',
    PRIMARY KEY (`ArticleType`,`FieldName`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    2. Read article type fields which has field type set to "Topic"