Custom-Forgot-Password-in-Django Custom Forgot Password Functionality in Django Admin Site AIM: As for now Django Admin Site does not provide to reset password without login or … Read more “Custom Forgot Password in Django”
Contactless Time and Attendance System – Post-Covid-19 Essential Tool for Factories
Today when the apparel manufacturing businesses around the world are battling the impact of COVID-19 pandemic the biggest challenge staring at them in the face … Read more “Contactless Time and Attendance System – Post-Covid-19 Essential Tool for Factories”
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 … Read more “Laravel Framework Specifications”
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 … Read more “CronJob – Task Scheduling in Laravel”
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. 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”
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?”
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 … Read more “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 … Read more “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 … Read more “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: The language the script is written in, which defaults to painless. The script … Read more “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 … Read more “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 … Read more “Changing admin login URL in WordPress”
RANDOM FAIL IN EMAIL SENDING on AWS EC2
EC2 users face a weird problem some times. They observe random fails in email sending via smtp when they try to send more than 3-4 … Read more “RANDOM FAIL IN EMAIL SENDING on AWS EC2”
Fatal error handling in php 7
Error / Exception handling is most important part of any php project. There was no way to handle fatal errors in the php in the … Read more “Fatal error handling in php 7”
Multi User Chat with (MUC,Group Chat ) Openfire.
Openfire provides multiuser chat using smack lib in android. In the previous blog, i have explained connection creation.We need to follow the following the … Read more “Multi User Chat with (MUC,Group Chat ) Openfire.”