[Solved] Magento 2 no such entity

In this article, you go to see what we have to do for solving an issue Magento 2 no such entity. It is explained in a simple way to fix this.

If you also facing this issue then you are at right place.

Let’s start with the topic of Magento 2 no such entity issue discussion

To fix this issue we have to execute the below code snippet.

So check with the below code snippet and execute the code snippet.

This issue also occurs for me while migrating site from one server to another.

It is mainly occurs due to some entity ids which is needs to be set to be 0.

When you transfer data and start inserting records, these records are automatically generated and tend to start at 1 and not 0.

Use the below code snippet to fix this issue we have to set entity id to 0.

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;

Use this small piece of code script and you fixed it.

Before executing the above code snippet.

Take the back up of your database before executing code snippet.

Finally after executing of above code snippet issue is going to be fixed completely and you also come how to fix this issue in a simple way by just using small code snippet.

Magento 2 media image attribute not showing

After running this – run indexing command again like

  • php bin/magento indexer:reindex
  • php bin/magento cache:clean
  • php bin/magento cache:flush

Conclusion :

Finally, we done with the point of how to solve Magento 2 no such entity issue.

I hope you like this article and if you feel like we missed out on anything, please comment below.

Leave a Comment