You’ve probably heard of TypeScript — the language created and maintained by Microsoft that’s had a huge impact on the Web, with many prominent projects embracing and migrating their code to TypeScript. TypeScript is a typed superset of JavaScript. In other words, it adds types to JavaScript — and hence […]
Daily Archives: October 28, 2021
Vanilla Magento 2.4.3-p1, Mysql 8.0 (Percona), Elasticsearch 7.15.1, Varnish 6.5.2 on Ubuntu 20.04.3 Double checked PHP ext.: $ composer check-platform-reqs –no-dev Checking non-dev platform requirements for packages in the vendor dir composer-plugin-api 2.1.0 success ext-bcmath 7.4.3 success ext-ctype 7.4.3 success ext-curl 7.4.3 success ext-dom 20031129 success ext-fileinfo 7.4.3 success ext-gd […]
I’m trying to configure SMTP settings on Magento store as following: but when I test, I have the this error:
I have a problem with bread crumbs. I have several products that are in multiple different categories. instead on the frontend side, univocal bread crumbs should appear (like the univocal path that the customer takes to get to that product – despite being the same product). As you can see, […]
We have a storefront in Magento 1.9 that we only use for backend order entry for our largest clients. These clients are in customer group ‘MKB’ We also have our main webshop storefront where clients place their own orders. These clients have the customer group ‘general’ This is what’s happening: […]
Like I mentioned in my question I am having problem with clean/flushing cache on category/product pages. I get some code, probably for some older version of Magento but didn’t work. Here it is: $cacheTag = MagentoCatalogModelCategory::CACHE_TAG . '_' . $catId; $category = $this->categoryRepository->get($catId, $this->storeManager->getStore()->getId()); $this->cacheManager->clean(Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG, [$cacheTag]); $this->eventManager->dispatch('clean_cache_by_tags', ['object' => $category]); […]
Given a binary array arr[] of N integers and an integer P, the task is to find the minimum cost to reach the end of… Read More The post Minimize cost to reach the end of given Binary Array using jump of K length after performing given operations appeared first […]
Given a binary array arr[] and an integer K, the task is to count the maximum number of 0’s that can be flipped to 1’s… Read More The post Maximize 0s to be flipped in given Binary array such that there are at least K 0s between two 1s appeared […]
Given a string s. The task is to minimize the number of adjacent swaps required to reverse the string. Examples:Attention reader! Don’t stop learning now.… Read More The post Minimum number of adjacent swaps to reverse a String appeared first on GeeksforGeeks.