Satish Chandra
Satish Chandra

Reputation: 21

magento cms pages index page not open in admin panel

I'm using Magento 1.4.1.1 which works great other than the cms menu in the admin panel when i try to open the cms->pages in admin navigarion it shows the error '404 error:Page not found'. All other pages work great and even other items in CMS menu, only Pages gives 404. What should I do? Can any one help me how to trace the error. Thanks in advance.

Upvotes: 0

Views: 2277

Answers (2)

performadigital
performadigital

Reputation: 178

This is usually due to residual entries in the database from previous stores (and store IDs).

Run this SQL command to clear these up:

DELETE FROM cms_page_store WHERE store_id NOT IN (SELECT store_id FROM core_store)

Upvotes: 0

Satish Chandra
Satish Chandra

Reputation: 21

I modified the core_store table in magento database why because there had a conflict occured in the store id. i maintain 2 stores in previous, i deleted one of the store later for some reasons, now i changed the store id. then its working fine.

Upvotes: 1

Related Questions