After creating your dream Magento store on localhost when its time to move it to production server sometimes people get nervous. Its a piece of cake and we will help you in migrating your Magento store from localhost to production server. Prerequisite 1. Working domain 2. Production ready for Magento Working domain By working domain […]
Author: Prashant Kumar
How to Track Visitor’s Data on Magento?
Magento is one of the most powerful open source e-commerce platform based on PHP. One of its powerful features is user activity logging system. By using user’s data we can analyze the customers/visitors behaviour which ultimately helps in business. For example, if we know that the customers are frequently visiting a particular section of a […]
How to programmatically create customer in Magento?
Magento is one of the most flexible and widely used e-commerce platforms nowadays. Many times during our development we need to create customers via our code. For example, if we are developing a Magento plugin to connect our Magento store to marketplaces like Walmart, Etsy etc then we create an order for the customer via […]
How to install Magento using command line?
Magento is one of the best e-commerce based open-source platform which is written in PHP. Magento provides three different platforms: Magento Community Edition Magento Enterprise Edition Magento Enterprise Cloud Edition Here we will be learning how to install Magento using the command line(CLI). Command line installation of Magento is one of the most efficient ways […]
How to programmatically create orders in Magento?
Sometimes we need to programmatically create orders in Magento. Suppose you are creating a Magento plugin for your store to connect it to the marketplace like Walmart or Etsy. In these cases, we need to create order on our Magneto store whenever a customer places an order on the marketplace. To do so we fetch the […]
How to run Direct SQL Queries in Magento?
Today we will learn how to run direct SQL queries in the Magento 1.x. By default Magento usages data model to access and modify the database. The data model provides good abstraction which hides the tricky queries but they also make the operation slow. Direct SQL queries come very handily whenever we need to update/insert a […]