문제

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?

도움이 되었습니까?

해결책

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!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top