While building your custom extension, you will usually need path to your extensions files. If you need to root the directory path in your custom module then, you need to inject \Magento\Framework\App\Filesystem\DirectoryList class in your construct. So, Let’s check the below steps with output. <?php namespace Kaushik\Helloworld\Helper; use Magento\Framework\App\Helper\AbstractHelper; class Data extends AbstractHelper { /** * @var…
How to create Cron Job in Magento 2
In this article, we will learn how to create cron job in Magento. Magento uses Cron Jobs to run scheduled tasks, reindexing, generating emails, newsletters, sitemaps and much more. Cron job is a great feature by Linux, the free operating system for the user. The cron job will create a command or a script that is appropriate with…
Create custom API in Magento 2
Today I’d like to help you through the process of creating Custom API in Magento 2. At first, we must create the primary files of a module and I would create module under Kaushik name space and call it CustomApi. File – app/code/Kaushik/CustomApi/etc/module.xml <?xml version=”1.0″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Module/etc/module.xsd”> <module name=”Kaushik_CustomApi” setup_version=”1.0.0″ /> </config> File –…
List of CLI Commands in Magento 2
In this post I listed all the useful commands that we can use in Magento 2. Command like content deploy, indexing, setup upgrade, cache and other many more commands. By default, Magento 2 comes with multiple CLI Commands out of box. To use any command, simply type that command in the CLI, like php bin/magento…
Setup Apache Virtual Host on Ubuntu Server
In this post I will show you through setting up website using virtual hosts on Ubuntu server. Before we begin, you need to have Apache installed in order to work through these steps. 1. sudo apt-get update 2. sudo mkdir -p /var/www/coolexample.local/public_html 3. sudo chown -R orange:orange /var/www/coolexample.local/public_html 4. sudo chmod -R 755 /var/www/coolexample.local/public_html 5….
Description of Magento 2 Directory Structure
What are the naming conventions, and how are namespaces established? The root Magento directory contains these primary folders: app/code: where your custom modules are found. Hopefully, very few 3rd- party modules are installed here because it is difficult to remember to keep these up-to-date. Installing modules through Composer provides the module vendor with an easier…
How to use Configuration Files in Magento 2
A module’s configuration files are stored in your modules etc/ directory, like app/code/Kaushik/HelloWorld/etc/. In there, you will find several important files. Many of these files can be found in a module’s etc/ directory. However, you sequester these to a particular area (frontend, adminhtml, webapi_rest, as a couple of examples). This is useful if you want…
Magento 2 Send bulk emails using SendGrid API
Here in this post, I’m going to show how you can send bulk transactional emails programmatically using SendGrid API & an email template created in Magento. Before getting started, let’s understand the used table’s role in this script. customer_data_live => here we have a list of customers’ emails with an email sent flag. block_email =>…
Magento 2 admin token using Rest API & CURL
Magento access token is used to synchronize and work with any third-party applications. Using the Magento Rest API provided, you can create, authenticate, and remove a token and its access. ************* curl POST HTTP token authentication **************** curl -XPOST -H ‘Content-Type: application/json’ http://magento231.local/rest/V1/integration/admin/token -d ‘{ “username”: “admin”, “password”: “admin@123” }’ ************* curl GET HTTP token…
Manage Fastly VCL snippets using the API
Delete a snippet 1. Save Fastly service credentials as bash environment variables export FASTLY_SERVICE_ID=<Service ID> export FASTLY_API_TOKEN=<API Token> 2. Check active VCL version curl -H “Fastly-Key: $FASTLY_API_TOKEN” https://api.fastly.com/service/$FASTLY_SERVICE_ID/version/active 3. Save active version number returned in the “number” key export FASTLY_VERSION_ACTIVE=<version> 4. Clone active VCL version and all snippets curl -H “Fastly-Key: $FASTLY_API_TOKEN” https://api.fastly.com/service/$FASTLY_SERVICE_ID/version/$FASTLY_VERSION_ACTIVE/clone -X PUT 5. Save the…