cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2.3.4 - How to properly remove or uninstalled Temando extension

Magento 2.3.4 - How to properly remove or uninstalled Temando extension

I have faced lot issue based on this extension, i can't able to remove by using following cmd,

composer remove Temando_Shipping

Now i just disabled, how to remove properly?

4 REPLIES 4

Re: Magento 2.3.4 - How to properly remove or uninstalled Temando extension

Hi @Aveeva 

You can follow the below steps with Composer Uninstall::

Remove and Disable the module by executing below commands:


1. php bin/magento module:disable Temando_Shipping --clear-static-content
2. composer remove temando/module-shipping-m2
3. Delete Temando_Shipping entry from setup_module table
4. php bin/magento setup:upgrade

Done

- Note: you can find the exact match for ExtensionProvider and ExtensionName in composer.json file associated with the extension.

Hope this helps you!
Problem Solved! Click Kudos & Accept as Solution!

Re: Magento 2.3.4 - How to properly remove or uninstalled Temando extension

@Madhu Rajawat  Any help with my following error,

 

https://snipboard.io/DHhrQ8.jpg

Re: Magento 2.3.4 - How to properly remove or uninstalled Temando extension

Hi @Aveeva 

This error should not happen when run this CLI 

This is a different issue. Check the given below solution if it can help you to fix this

https://stackoverflow.com/questions/17792588/composer-says-git-not-found

Hope this helps you!
Problem Solved! Click Kudos & Accept as Solution!

Re: Magento 2.3.4 - How to properly remove or uninstalled Temando extension

@Aveeva Try to run the below command first and then run the command to remove the module.

apt-get install git

Also this module install some product attributes, so remove those by using below sql command in phpmyadmin.

 

delete from eav_attribute where source_model like '%Temand%';

Thanks