Magento 2 – Development environment

I just made available on github a project that allows you to install a local development environment with a working version of magento within it. Here is the url of its repo : https://github.com/berliozd/magento-env Description After cloning the project, you …

Read More

Magento 2 : Totals collection explained

What is it? Quote Totals collection is an important process in magento. This process also exists on Invoice and Creditmemo objects but we will only look into detail how it is implemented for the Quote object which is the one …

Read More

Docker : various usefull commands

I am simply listing some usefull command I have been using with my docker setup locally. Some more commands will come with time. 1. How to remove exited container. 2. How to run a command inside a container. In the …

Read More

ElasticSearch / Magento 2 – various commands

Magento 2 uses ElasticSearch as a search engine. It can be helpfull to directly request ElasticSearch to verify the data that have been indexed. First you can get all indices. In the command below ElastichSearch is accessible on host name …

Read More

Magento 2 : create new stores using a store create processor

I have previously already created a post with a code example that show how to create stores programmaticaly. Here is this previous post : https://www.addeos.com/magento-2-create-a-store-storegroup-website-programmaticaly Here I present an other way of doing if using a native create processor present …

Read More