Domanda

I'm currently trying to uninstall an extension that I installed using "Magento Marketplace" on a Magento 2.2.7 install but every time I try it gets stuck in the "Update pending" stage.

There are no errors in the developer console or in the console log.

enter image description here

Is there a solution for this or any other way to uninstall the extension?

È stato utile?

Soluzione

You can uninstall module using php bin/magento module:uninstall Namespace_Modulename. (For more information click here)

This command works only with modules defined as Composer packages.

If you did not install the module via composer, it won't work.

You can only disable it via php bin/magento module:disable Namespace_Modulename

To remove module run below command.

cd app/code/<ExtensionProvider>/

rm -rf <ExtensionName>

I hope it helps!

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top