Critical CSS

Delivering a faster and smoother web experience is an important part of building websites today. Most of the time, we develop websites without understanding what the browser is actually doing. How exactly does the browser render our web

By |2023-01-17T20:12:58+05:3011 January 2019|Comments Off on Critical CSS

RabbitMQ, Implementation of RabbitMQ in YII.

What is RabbitMQ? RabbitMQ is open source software used to manage the queue. We can queue our application tasks to execute them in async way by using RabbitMQ. In simple word it is a software where queue can

By |2023-01-17T20:13:04+05:3017 September 2018|Comments Off on RabbitMQ, Implementation of RabbitMQ in YII.

How to use magento 1 customer password in magento 2

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. [crayon-678168d103964369615297/] [crayon-678168d10396d391458540/] Magento 1 generate hash by md5(salt + password) and save in database with

By |2023-01-17T20:13:12+05:3022 August 2018|Comments Off on 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 [crayon-678168d103c54156121985/] [crayon-678168d103c5d249536415/] Create a .html file [crayon-678168d103c61069866707/] And add a js [crayon-678168d103c65940651333/] You can draw more type graph

By |2023-01-17T20:13:24+05:3020 August 2018|Comments Off on How to create magento2 knockout chart

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 response parameters in Apis. Goals To convert (parse) all type of Request data

By |2023-01-17T20:14:05+05:3013 August 2018|Comments Off on 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. [crayon-678168d104774297259297/] Now create a email template configuration file at app/code/Auriga/Email/etc location file name should be email_templates.xml

By |2023-01-17T20:14:13+05:306 August 2018|Comments Off on 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 it working for individual order. Though if you want to show this attribute

By |2023-01-17T20:14:23+05:302 August 2018|Comments Off on How to expose a custom field from sales_order table to rest api?

How to use bundle products in configurable products?

By default magento does not allow to use bundle products in configurable products. You can change few files to make it work. You needs to change two files: 1. app/code/core/Mage/Catalog/etc/config.xml [crayon-678168d104c92300439024/]   2. app/code/core/Mage/Catalog/Block/Product/View/Type/Configurable.php You need to manage

By |2023-01-17T20:14:38+05:3031 July 2018|Comments Off on How to use bundle products in configurable products?

How to override/extend controller in Magento 1

If we want to override controller file in magento 1 then we need to add create custom modules like following: Create a new module and declare it in “app/etc/modules” by adding a xml file. app/code/modules/Wd_Wishlist.xml: [crayon-678168d104f08281102263/] Create folders

By |2023-01-17T20:14:49+05:3025 July 2018|Comments Off on How to override/extend controller in Magento 1

Magento​ ​Login​ ​Issue​ ​With​ ​Chrome

Magento login for admin/customer works fine with Firefox and IE. But sometimes we are not able to login in chrome. This is caused by session cookie compatibility in chrome browser. So sometimes in chrome you will not able to login

By |2023-01-17T20:14:57+05:3019 July 2018|Comments Off on Magento​ ​Login​ ​Issue​ ​With​ ​Chrome

How to use scripts in elastic search

Wherever scripting is supported in the Elasticsearch API, the syntax follows the same pattern: [crayon-678168d105384231456583/] The language the script is written in, which defaults to painless. The script itself which may be specified as source for an inline script or id for a stored

By |2023-01-17T20:15:05+05:3018 July 2018|Comments Off on How to use scripts in elastic search

How to create custom API in Magento 2

The REST API documentation published on the Magento 2 Developer Documentation website describes the REST APIs that are available on the latest release of Magento 2.  This documentation is generated from the code base using Swagger and represents the state of the code at

By |2023-01-17T20:15:11+05:3011 July 2018|Comments Off on How to create custom API in Magento 2

Changing admin login URL in WordPress

Wordpress is the leading CMS powering over a million websites. It have come a long way in terms of stability and security. However, being open-source and most-used also make it a target of hacks and breaches. While no

By |2023-01-17T20:15:19+05:3015 January 2018|Comments Off on Changing admin login URL in WordPress

How to Configure and Run Jmeter Script by Jenkins for Windows and Ubuntu

Step-1 Firstly, Download and Install the Jenkins. Download latest version from Jenkins official site https://jenkins.io/download/ The next step is to download the Performance Plugin for Jenkins. To download Performance Plugin click on Manage Jenkins, then click on Manage

By |2023-01-17T20:15:29+05:301 November 2017|Comments Off on How to Configure and Run Jmeter Script by Jenkins for Windows and Ubuntu
Go to Top