Magento 1 use MD5 hash to encrypt the password and Magento 2 use SHA-256. In Magento 1, they use Mage_Core_Model_Encryption class with following functions. Magento 1 … Read more “How to use magento 1 customer password in magento 2”
How to create magento2 knockout chart
You can download complete working example from below url https://github.com/mukdam/magento2-knockout-chart See below how it will work. Create a phtml file Create a .html file And … Read more “How to create magento2 knockout chart”
Mobile App Analytics (PART 1)
Mobile Applications as one of the most rapidly emerging technology has changed the world we are living in today. With no doubt, they are … Read more “Mobile App Analytics (PART 1)”
Difference between IN and FIND_IN_SET in MySQL
Most of people thinks IN() and FIND_IN_SET() MySQL functions are identical and do the same job. But they not. You may be confused with them … Read more “Difference between IN and FIND_IN_SET in MySQL”
Mysql IN() Vs Exist()
Purpose of using of IN() and Exist() is almost the same. Both MySQL functions are generally used with sub queries. To understand it better lets … Read more “Mysql IN() Vs Exist()”
How to parse Request/ Response in Rest Api’s in yii2
Yii provides a whole set of tools to simplify the implementation of Restful Web Service APIs. In particular, It is all about converting request and … Read more “How to parse Request/ Response in Rest Api’s in yii2”
How to create custom email template in magento 2
First we have to create a field in configuration ‘system.xml’ in folder app/code/Auriga/Email/etc/adminhtml/, from where we can select which email template will use. Now create a … Read more “How to create custom email template in magento 2”
How to expose a custom field from sales_order table to rest api?
Suppose you have custom field delivery_type in sales_order table. You are accessing order using rest Api but this field is not present in response. Requested Api: http://localhost/default/rest/default/V1/orders/{order_id} You can get … Read more “How to expose a custom field from sales_order table to rest api?”