Magento 2: What is the difference between Cache Clean & Cache Flush?

Magento 2 Cache Clean & Cache Flush The Magento Cache Clean deletes all the enabled Magento-related caches. The clean cache does not clean other parts of the server which are not related to Magento. The Magento Cache Flush cleanses cache storage. It will impact other parts of the storage which is a part of the… Continue reading Magento 2: What is the difference between Cache Clean & Cache Flush?

Published
Categorized as Magento

CSP whitelist in Magetno 2

Content Security Policies (CSP) are a powerful tool to mitigate against Cross Site Scripting (XSS) and related attacks, including card skimmers, session hijacking, clickjacking, and more. By default, Content Security Policiy is configured in report-only mode, which allows merchants and developers to configure policies to work according to their custom code. Your browser is not showing… Continue reading CSP whitelist in Magetno 2

Section Source in Magento2

The section source class is responsible for retrieving data for the section. As a best practice, we recommend that you put your code within the Vendor/ModuleName/CustomerData namespace. Your classes must implement the Magento\Customer\CustomerData\SectionSourceInterface interface. The public method getSectionData must return an array with data for a private block. <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Customer:etc/sections.xsd”> <action name=”customer/account/editPost”> <section name=”*”/> </action> </config> Eg: <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Customer:etc/sections.xsd”>… Continue reading Section Source in Magento2

Published
Categorized as Magento

How to integrate Zoominfo with Magento?

Integrating ZoomInfo with Magento would typically involve leveraging ZoomInfo’s API to access and retrieve relevant data from ZoomInfo’s database and then incorporating that data into your Magento store or CRM system. As of my last update in September 2021, there was no official or pre-built integration between ZoomInfo and Magento. However, you can still create… Continue reading How to integrate Zoominfo with Magento?

Published
Categorized as Magento

Composer install and update in Magento2

composer update will update your dependencies as they are specified in composer.json For example, if you require this package as a dependency: and you have actually installed the 0.9.1 version of the package, running composer update will cause an upgrade of this package (for example to 0.9.2, if it’s already been released) in detail composer update will: Read composer.json Remove installed packages that are no… Continue reading Composer install and update in Magento2

Published
Categorized as Magento