Magento 2 – Disabling the Extension

Disabling the Extension Temporarily Disable To temporarily disable the extension please follow these steps: Login to your server’s SSH console and navigate to the root directory of the Magento 2 store. Run command php -f bin/magento module:disable Mirsvit_Related to disable the extension. Log in to the Magento backend and refresh the store cache (if enabled)….

Magento2 – How to upgrade extension

To upgrade the extension, follow these steps: Backup your store’s database and web directory. Login to your server’s SSH console and navigate to the root directory of the Magento 2 store. Run command composer require mirasvit/module-related:* –update-with-dependencies to update current extension with all dependencies. Note There are some cases when the command above is not…

How to Change OpenCart Timezone

Go to system/startup.php and find following lines of code: if (!ini_get(‘date.timezone’)) { date_default_timezone_set(‘UTC’); } Replace with following lines of code by changing to your timezone date_default_timezone_set(‘Australia/Sydney’); Synchronize PHP and Database Timezone The query we use to set database timezone if you are super admin is below: SET time_zone=’offset’; But everyone has no super admin access…

How to move OpenCart website from one domain to another?

OpenCart is one of the simplest e-commerce platforms to build an online store. OpenCart offers you an ‘easy-to-work-with’ code-base with which you can get an e-Commerce site online, quickly. If you are looking for a safe way to move OpenCart website from one domain to another, follow the process below. Here are the steps to…