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-6606c96d1034b495268050/] [crayon-6606c96d103a4055008892/] 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-6606c96d107c3689094257/] [crayon-6606c96d107d2393610602/] Create a .html file [crayon-6606c96d107d6548499300/] And add a js [crayon-6606c96d107db207374111/] 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-6606c96d115a0334973813/] 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-6606c96d11bad197168714/]   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-6606c96d11eb7108553025/] Create folders

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