浏览文章

文章信息

后端 Magento2 The website with id 0 that was requested wasn't found 12700

1、数据库视图没有权限

常出现在数据库搬迁过程中,在搬迁过程中,数据库信息中记录了之前创建此表的user,如果你搬迁过后,创建的新的user名与之前不同则报错。


2、第二种情况,store_website表数据不完整

SET FOREIGN_KEY_CHECKS=0;
UPDATE `store` SET store_id = 0 WHERE code='admin';
UPDATE `store_group` SET group_id = 0 WHERE name='Default';
UPDATE `store_website` SET website_id = 0 WHERE code='admin';
UPDATE `customer_group` SET customer_group_id = 0 WHERE customer_group_code='NOT LOGGED IN';
SET FOREIGN_KEY_CHECKS=1;


原创