Reputation: 103
Shortly after configuring my site to have two separate websites I could not access CMS -> Pages to manage my pages.
I followed the steps on this two links http://www.magentocommerce.com/boards/viewthread/18223/ | Magento admin panel gives 404 when trying to enter cms pages where they mention “cms_page_store” table. But that table obviously does not exist in 1.8.1.0 Magento version.
Upvotes: 1
Views: 5803
Reputation: 130
Old question, but still happened to me in Magento 1.9.1.0. Some leftover CMS-Page database entries were referencing a store_id of a store that no longer existed after I deleted it.
So here's what solved it for me:
System > Manage Stores
in the column Store View Name
look for the Store's id that pop up when hovering the link and also in the link url (e.g. ...admin/system_store/editStore/store_id/3/key/...
)System > Tools > Backups
cms_page_store
. Delete all entries with a store id in the field store_id
that points to a store, that does no longer exist.CMS > Pages
, 404 should be gone.Upvotes: 4