In this age of the digital world, awareness has become a prerequisite for every individual and all the industries are growing so rapidly that we never know what becomes trendy like how. The one such industry which has grown manifolds and thanks to the 4G Internet is the eCommerce industry. For those who are not […]
Tips
How to display price in all currencies on OpenCart Product Page?
Objectives of the blog After reading this blog we will be able to display price in all currencies in the product page of OpenCart 3.x Problem Statement By default, OpenCart 3.x display price of the product into the currency set as default or chosen by the end user. And to display the price in all […]
Xdebug Installation & Configuration – Part 1
Introduction This document contains steps to install Xdebug and Configure it with Netbeans. Steps to install Xdebug and Configure it with Netbeans To install Xdebug and Configure it with Netbeans, steps are given below – 1. Install Xdebug for PHP by running following command in Linux environment sudo apt-get install php5-xdebug 2. Setup Xdebug.ini for […]
Xdebug Installation & Configuration using NetBeans – Part 2
Introduction This document is all about the Xdebug installation & configure it with Netbeans in Windows. How to debug through Xdebug in a project? To debug through Xdebug you have to set up the project in Netbeans. Setup the Blog system project in NetBeans. After setting up the project in NetBeans select the project for […]
How to print last executed query in CakePHP2?
Follow the following steps to print last executed query in CakePHP2: To print last executed query: Add below code in app_model.php file which is located at root/cake/libs/model. public function getLastQuery() { Configure::write('debug', '2'); $dbo = $this->getDatasource(); $logs = $dbo->getLog(); $lastLog = end($logs['log']); return $lastLog['query']; } Add below line in your model where you want print […]
How to delete products from the Go Sport marketplace?
Objective of the blog: After reading this blog, you will be able to understand how a seller can delete products from the Go Sport marketplace. Methods to delete Products from the Go Sport marketplace You can delete products from the Go Sport marketplace by two methods: 1.By deleting manually from merchant account 2.By Using Inventory […]
Amazon SQS setup and MWS Subscriptions for AnyOfferChanged Notification
Objective of the blog After reading this blog, you will be able to understand how SQS is setup and how MWS is subscribed for any notification. Let’s Create an Amazon SQS and Enable this for MWS Subscription The Amazon MWS Subscriptions section enables us to subscribe to receive notifications. To receive notifications, you must first create and […]
How to use Catch_Lite?
Objective of the blog After reading this blog, you will be able to understand how cache_lite is used to create cache for the HTML. Let’s know about the Cache_Lite Cache_Lite is a caching system which can be used for high traffic website. The simple logic of cache lite is to serve the HTML from cache […]
How to get MWS credentials from Amazon Seller central
Objective of the blog After reading this blog, you will be able to get the MWS credentials so that you can build applications using MWS. Let’s know how get MWS credentials Below are the steps to get MWS credentials. 1. Firstly login to seller central using the credentials. 2. After this, go to “Settings” (at […]
How to Send Copy of Order Confirmation Mail to Store Owner (Admin) in Opencart ?
In Opencart there is functionality to automate sending order email to admin which we send to the customer after placing an order. For Opencart 2.2 Follow the following steps to automate sending order emails to the admin: Open the admin panel and go to System -> Setting. On this page, you will see a store […]