Question

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?

Was it helpful?

Solution

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!

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top