Blank page while using any theme
  • Hallo. I'm facing the problem here - blank start page of radioruda.ru on every theme I tried (Broadcaster, Rockstar). At the same time i can see it  in preview mode or using direct link http://radioruda.ru/ru/start/

    Use Newscoop 4.4.7 release. Please, help!
  • 2 Comments sorted by

  • after analize log/prod.log it seems that problem is here

    CREATE TABLE `output_publication` (
    `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    `fk_publication_id` int(11) unsigned NOT NULL,
    `fk_language_id` int(11) unsigned NOT NULL,
    `theme_path` varchar(255) NOT NULL,
    PRIMARY KEY (`id`),
    UNIQUE KEY `publication_language` (`fk_publication_id`,`fk_language_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
    no fk_output_id in table output_publication.
    How can I solve it?
  • Vote Up0Vote Down an.saan.sa
    Posts: 57Member
    CREATE TABLE IF NOT EXISTS `output_publication` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `fk_output_id` int(11) unsigned NOT NULL,
      `fk_publication_id` int(11) unsigned NOT NULL,
      `fk_language_id` int(11) unsigned NOT NULL,
      `fk_theme_path_id` int(11) unsigned DEFAULT NULL,
      PRIMARY KEY (`id`),
      UNIQUE KEY `publication_language` (`fk_publication_id`,`fk_language_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;