I start to see this error message below saying the Default store is inactive, but my stores are working fine, how could I solve it? [2023-02-21T19:23:08.544484+00:00] report.ERROR: Default store is inactive [] [] [2023-02-21T19:23:08.548645+00:00] report.CRITICAL: MagentoFrameworkExceptionNoSuchEntityException: Default store is inactive in /app/vendor/magento/module-store/Model/StoreResolver.php:183 Stack trace: #0 /app/vendor/magento/module-store/Model/StoreResolver.php(126): MagentoStoreModelStoreResolver->getDefaultStoreById('3') #1 /app/vendor/magento/framework/Interception/Interceptor.php(58): MagentoStoreModelStoreResolver->getCurrentStoreId() […]
Yearly Archives: 2023
I’m using ElasticSuite and suddenly this message below appeared. What’s ghost indices and how can I avoid having them?
My Adobe Commerce was running fine, but after the upgrade, I can see via New Relic that it takes more time to process queries. I tried to upgrade my MariaDB to versions 10.4 and 10.6. Is there any additional config needed when upgrading to Adobe Commerce 2.4.6?
I want to enable remote shopping assistance when a new customer account is created: Any help would be appreciated.
In magento 2 I am trying to update session_cutoff column in table customer_entity during login Below is my code which I add in observer using event customer_login public function execute(MagentoFrameworkEventObserver $observer) { $this->_customerSession->setGTMSuccessfulLogin($this->helper->successfulLoginPushData()); $customer_data = $observer->getEvent()->getCustomer(); $gtrustCustNo = $customer_data->getData('gtrust_custno'); $param = array('custNo' => $gtrustCustNo); $result = $this->_gtrustApiHelper->getUserBenefit(($param)); $customer = $this->customerFactory->create(); […]
If you ever come across the Wi-Fi settings, you have probably heard of the network security key. This security key is nothing but another name… Read More The post What is Network Security Key & How to Find It? appeared first on GeeksforGeeks.
Given an array arr[] of integers, the task is to find the length of the second longest increasing subsequence (LIS). Examples: Input: arr[] = {1,… Read More The post Find the Second Longest Increasing Subsequence appeared first on GeeksforGeeks.
Given an array of strings, the task is to print “Yes” if it contains a string that is a prefix of another string otherwise, print… Read More The post Check if Prefix String exists in the Array appeared first on GeeksforGeeks.
Given a Binary Search Tree, find the mode of the tree. Note: Mode is the value of the node which has the highest frequency in… Read More The post Find Mode in Binary Search tree appeared first on GeeksforGeeks.