Magento2 – How to install the extension

How to install the extension 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. Copy the installation instructions from the page My Downloadable Products to the SSH console and press ENTER. Run command php -f bin/magento module:enable Mirasvit_Core Mirasvit_Related to…

Magento2 – “sw_menu_block_top_content” attributeCode doesn’t exist

“(Magento\Framework\Exception\NoSuchEntityException): The attribute with a “sw_menu_block_top_content” attributeCode doesn’t exist. Verify the attribute and try again.” Remove modulde Smartwave_megamenu from table setup_module on database and ran $ php -f bin/magento setup:upgrade $ php -f bin/magento setup:di:compile  

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…