ES6 Features

This is also known as ECMAScript 6 and ECMAScript 2015. ES6 has some new features. This blog introduced these features. Let & Const There was the only way to declare a variable by using the "var" in Javascript.

By |2023-01-17T20:11:22+05:3011 July 2019|Comments Off on ES6 Features

MySQL Stored Procedures

Recently we were working on a project where we needed to categorize or manipulate a large dataset for further processing. The data needed to be filtered based on certain criteria where we would check the relationship of

By |2023-06-06T15:32:55+05:3011 July 2019|Comments Off on MySQL Stored Procedures

Laravel Framework Specifications

Laravel is one of the highly used, open-source modern web application framework that designs customized web applications quickly and easily. Developers loves Laravel because of performance, features, scalability, huge community, well design documentation, easy learning curve and many

By |2023-01-17T20:11:40+05:3011 June 2019|0 Comments

Integration and Customization of Laravel Authentication

1. For integrating Laravel Authentication, you should run the following artisan  command php artisan make:auth  it will integrate Laravel Default Authentication. If you looked at folder structure following files will generated  Controller Files App -> http -> controller

By |2023-01-17T20:11:57+05:301 May 2019|Comments Off on Integration and Customization of Laravel Authentication

CronJob – Task Scheduling in Laravel

Every application requires some tasks to be run periodically on the server. It could be sending emails, creating reports, creating backups or cleanup databases. To automate these tasks Laravel offers cron jobs scheduling.CronCron is a time-based task scheduler

By |2023-01-17T20:12:17+05:3011 April 2019|Comments Off on CronJob – Task Scheduling in Laravel

Find and fix security vulnerability in wordpress

Wordpress is very popular framework and most site using wordpress for easy to customisation and it’s provide easy to use plugins. Wordpress is freely available and any one can easily build website many website template available in market

By |2023-01-17T20:12:32+05:304 February 2019|Comments Off on Find and fix security vulnerability in wordpress

Service Oriented Architecture

Application with single transactional resource: Architecture: Common Approach most developers used is create a controller and relevant model. All business logics will resides in controller and controller requests to model.       Controller in MVC :  The role of a

By |2023-01-17T20:12:39+05:301 February 2019|Comments Off on Service Oriented Architecture

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-662cae80b32d8322436849/] [crayon-662cae80b32de790209245/] 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-662cae80b3515654704781/] [crayon-662cae80b351c843959476/] Create a .html file [crayon-662cae80b351e609608138/] And add a js [crayon-662cae80b3521259485706/] 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-662cae80b3dbf412125162/] 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?
Go to Top