Ошибка в запросе БД: Неизвестный столбец 'i.target_controller' в 'where clause' SELECT i.*, c.name as ctype_name, c.title as ctype_title, c.id as ctype_id FROM cms_content_relations i WHERE (i.child_ctype_id = '9') AND (i.target_controller = 'content') ORDER BY i.ordering asc Последние вызовы: actionContentItemAdd->run() content->route() cmsCore->runController() @ /index.php : 40
Неизвестный столбец 'i.target_controller' в 'where clause'
Как-то Вы неровно обновились.
Добавьте колонку target_controller вручную.
ALTER TABLE `cms_content_relations` ADD `target_controller` VARCHAR(32) NOT NULL DEFAULT 'content' AFTER `ordering`; ALTER TABLE `cms_content_relations` ADD INDEX(`target_controller`);
Помогло удалить таблицы
cms_content_relations
cms_content_relations_bind
И по новой создать.
В любом случае спасибо.