Magento 2

Solved : Magento2- Admin Login error -This is not implemented, as it is not possible to implement Argon2i with acceptable performance in pure-PHP

Error: 1 exception(s): Exception #0 (SodiumException): This is not implemented, as it is not possible to implement Argon2i with acceptable performance in pure-PHP Exception #0 (SodiumException): This is not implemented, as it is not possible to implement Argon2i with acceptable performance in pure-PHP <pre>#1 sodium_crypto_pwhash() called at [vendor/magento/framework/Encryption/Encryptor.php:594] #2 Magento\Framework\Encryption\Encryptor->getArgonHash()…

Magento 2 Product Attributes

Introduction In this article, we are going to understand the purpose of the creation of the attribute. Before we create any type of the product, we should know details about the product attribute. So to understand how to use attribute, lets see the details below:- Product Attributes An attribute is…

Banner Slider in Magento2

These are the list of the free banner sliders  in Magento2. List is as below:- Banner Slider by Sparsh Technologies Banner Slider by Mazeplaza Banner Slider available in Git You can choose as per your requirement. We will keep adding more. So stay tuned. Happy Learning !! Thank You !!

Uninstall the frontend theme in Magento2

Introduction In this article, we will discuss the process of uninstalling a storefront theme in Magento 2. The way theme should be uninstalled is defined by two factors: The way the theme was added: manually added (installed or created) Installed as composer package or as an extension. The way Magento was installed: using the…

Uninstall Grunt from Magento2

To remove or uninstall Grunt, run below command npm uninstll -g grunt-cli You will get the output like this     commands: npm uninstall sax –save npm uninstall @myorg/privatepackage –save npm uninstall node-tap –save-dev npm uninstall dtrace-provider –save-optional npm uninstall lodash –no-save npm uninstall takes 3 exclusive, optional flags which save…

Install and Configure Grunt in Magento2

Grunt is a JavaScript task runner which essentially simplifies repetitive tasks by automating compilation, minification, linting, unit testing, etc. In this article, we are going to understand how to install and configure Grunt for Magento2. Here are the steps : Step 1: Install nodejs in our machine Step 2: Install Grunt CLI…

Solved – Admin links not working in Magento2

After installing Magento 2 in Windows under Xampp, if your admin and front end link’s are not working, please follow the below steps to fix the same… Open up app/etc/di.xml in the editor Find the path “Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink” and replace to “Magento\Framework\App\View\Asset\MaterializationStrategy\Copy” Clear Cache That’s it. Thank You !!

Solved – All Errors while installing Magento2

This article helps in resolving the issues while installing Magento2. The following are the issues which you may meet, feel free to apply the solution given.   Error 1: – “SQLSTATE[HY000] [2002] No such file or directory” Solution :-  In the php bin/magento setup:installcommand,  replace –db-host=”localhost” with –db-host=”127.0.0.1″ and re-run…

Solved: Composer error in setup:upgrade command in Magento2

If you are stuck with composer error while running php bin/magento setup:upgrade this command in Magento2, not to worry at all. This article is here to help you out. Error:- Running data recurring…Reading C:\xampp\htdocs\magento/composer.json Loading config file C:\xampp\htdocs\magento/composer.json Failed to initialize global composer: Composer could not find the config file:…

Solved Magento2 Installation Error – Could not validate a connection to Elasticsearch. No alive nodes found in your cluster

This error means that Magento can’t connect to Elasticsearch. It might be possible that your Elasticsearch is not running. Solution:- go to \elasticsearch-7.16.2\bin  Right click on elasticsearch.bat and select run as administrator   Leave this window running on background   To check if Elasticsearch is running on your system, in your browser type: localhost:9200 If…

Magento 2 – How to Build a Complete Module

Introduction Modules together form the Magento2 platform. The whole Magento 2 system is built with different unique Magento system core modules and that’s the reason it is called as modular system. This means all functionalities or business logic is designed and developed as modules. Every module can work pretty much…