iggywebprom Posted September 14, 2012 Share Posted September 14, 2012 Also in admin when I click to edit article the editor page is empty. Probably something with articles ID... Trying to disable articles gives this error: 4 errors Object cannot be loaded (not found) An error occurred while updating status for object. cms (cannot load object) Object cannot be loaded (not found) An error occurred while updating status for object. cms (cannot load object) Link to comment Share on other sites More sharing options...
dandumit Posted September 20, 2012 Share Posted September 20, 2012 have you found a solution to this ? I am in a similar situation... Link to comment Share on other sites More sharing options...
slim124 Posted September 23, 2012 Share Posted September 23, 2012 Try run the query below, CREATE TABLE `ps_cms_shop` ( `id_cms` INT( 11 ) UNSIGNED NOT NULL, `id_shop` INT( 11 ) UNSIGNED NOT NULL , PRIMARY KEY (`id_cms`, `id_shop`), KEY `id_shop` (`id_shop`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO `ps_cms_shop` (id_shop, id_cms) (SELECT 1, id_cms FROM ps_cms); ALTER TABLE `ps_cms_block` ADD `id_shop` INT(11) UNSIGNED NOT NULL DEFAULT '1' AFTER `id_cms_block`; Link to comment Share on other sites More sharing options...
nickbristol Posted September 23, 2012 Share Posted September 23, 2012 Thanks Slim - sorted that problem for me. Link to comment Share on other sites More sharing options...
ecomlearning Posted September 26, 2012 Share Posted September 26, 2012 I've just hit this problem too. Haven't tried the fix listed but wondering where it came from? I looked in the SQL file that is used to create a fresh DB and there's nothing there about a table called PREFIX_cms_shop At what point is this table meant to be created and is it meant to copy in the existing CMS pages? Link to comment Share on other sites More sharing options...
ecomlearning Posted September 26, 2012 Share Posted September 26, 2012 Slim, SQL worked for me. Cheers. Link to comment Share on other sites More sharing options...
JerseyG Posted September 26, 2012 Share Posted September 26, 2012 Hi Slim I had run into this problem however I ran your scripts on my test server before the upgrade from 1.4 to 1.5 and the CMS upgrade worked. Now working well live. Thanks G Link to comment Share on other sites More sharing options...
Lieselot Posted October 18, 2012 Share Posted October 18, 2012 I'm not a computer expert, so SQL is Chinese to me. Could someone please explain a bit more detailed how and where I need to run the query? I don't want to experiment and risk that my site gets totally ruined... By the way: I see that there are dozens of issues reported with the CMS, isn't it easier to create a patch for this? Link to comment Share on other sites More sharing options...
Recommended Posts