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?
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.
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
Get help from others!
Recent Questions
Recent Answers
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP