Magento 管理面板在尝试进入 cms 页面时给出 404

发布于 2024-09-26 08:43:54 字数 125 浏览 1 评论 0原文

我正在使用 Magento 1.4.1.1,当我尝试在导航中输入 CMS/Pages 时,它比 404 效果更好。
所有其他页面都运行良好,甚至 CMS 菜单中的其他项目也只有 Pages 给出 404。
我应该怎么办?

I'm using Magento 1.4.1.1 which works great other then the 404 when I'm trying to enter CMS/Pages in the navigation.
All other pages work great and even other items in CMS menu, only Pages gives 404.
What should I do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪漫之都 2024-10-03 08:43:54

有这个确切的问题..

您在 CMS 页面上收到 404 错误,因为从 Magento 管理中删除商店视图后,旧商店视图的残留物仍然挂在数据库中,以清理(删除)旧的未使用的 CMS 页面以获取商店视图已删除运行此 MySQL 查询。

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

您还可以使用 phpmyadmin 等应用程序手动查找具有您知道未使用的商店 ID 的 CMS 条目,但这可能会变得混乱。

原始来源:http://www.magentocommerce.com/boards/viewthread/18223/

Had this exact problem..

You are getting a 404 on CMS pages because of the remains of old store views still hanging around in the database after deleting store views from Magento admin, to clean up ( delete ) old unused CMS pages for store views you have deleted run this MySQL query.

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

You could also use an app like phpmyadmin to manually look for CMS entries that have store IDs that you know not to be in use, but this could get messy.

Original source: http://www.magentocommerce.com/boards/viewthread/18223/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文