TransWikia.com

Magento 2: Requested store is not found in product

Magento Asked by CesarChris710 on January 3, 2021

I get this message “Requested store is not found” when I want to create a new product or edit it.

Magento 2.2.5

php -f bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f

This already applies but does not solve

Any other solution?

Requested store is not found in product

Below error showing in log file.

main.CRITICAL: Requested store is not found {“exception”:”[object]
(MagentoFrameworkExceptionNoSuchEntityException(code: 0):
Requested store is not found at
/vendor/magento/module-store/Model/StoreRepository.php:109)”}

Please help me.

2 Answers

Try to use this query in your database :

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';

Answered by Emipro Technologies Pvt. Ltd. on January 3, 2021

At line no 164 add the below code of MagentoStoreModelStoreManager:

if(!$storeId){
    if(isset($_COOKIE['store']) && $_COOKIE['store'] !== ''){
        $storeId = $_COOKIE['store'];
    } else {
        $storeId = $this->getDefaultStoreView()->getCode();
    }           
}

And then, change line no 155 of MagentoStoreModelStoreManager

=> FROM :

if (null === $this->currentStoreId) { => To :

if (null === $this->currentStoreId || '' === $this->currentStoreId) {

Answered by vikrant zilpe on January 3, 2021

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP