Connector Uninstallation

Table of Contents

Here you may find instructions on how to uninstall the module. Following scenario is valid for all module versions we have released so far.

1. Disable module

Login to your server via ssh and call the following commands in your Magento 2 installation folder:

php bin/magento module:disable Nostress_Koongo

2. Delete folders and files

  • delete folder app/code/Nostress/Koongo

3. Database modifications

Run following sql script over database. The script removes all Koongo Connector for Magento 2 tables.

Module uninstallation sql script
DELETE FROM setup_module WHERE `setup_module`.`module` = 'Nostress_Koongo';
DROP TABLE nostress_koongo_cache_product;
DROP TABLE nostress_koongo_cache_tax;
DROP TABLE nostress_koongo_cache_categorypath;
DROP TABLE nostress_koongo_cache_weee;
DROP TABLE nostress_koongo_cache_profilecategory;
DROP TABLE nostress_koongo_cache_channelcategory;
DROP TABLE nostress_koongo_taxonomy_category_mapping;
DROP TABLE nostress_koongo_taxonomy_setup;
DROP TABLE nostress_koongo_cron;
DROP TABLE nostress_koongo_channel_profile;
DROP TABLE nostress_koongo_channel_feed;
DROP TABLE nostress_koongo_taxonomy_category;

4. Setup upgrade

Login to your server via ssh and call the following commands in your Magento 2 installation folder:

php bin/magento setup:upgrade
php bin/magento setup:static:deploy

5. Refresh cache

Cache refresh

Finally, do not forget to refresh cache (wink)