cancel
Showing results for 
Search instead for 
Did you mean: 

How do I uninstall a module?

SOLVED

How do I uninstall a module?

How do I uninstall a module in 2.3.3?  Need to remove Webkul's Shipping module.

1 ACCEPTED SOLUTION

Accepted Solutions

Re: How do I uninstall a module?

Hello @Sheba 

If you have installed the extension with composer, you can uninstall by running command.

php bin/magento module:uninstall webkul_shipping

Last is extension name.

 

If you did not install the module via composer, it won't work.
You can only disable it via bin/magento module:disable Webkul_shipping

To remove the module, remove the folder Webkul/Shipping, remove the record with module = 'Webkul_Shipping' from the table setup_module and remove any other tables or records added by the install of the module.
Also remove the line with Webkul_Shipping from app/etc/config.php

Was my answer helpful? You can accept it as a solution.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

View solution in original post

3 REPLIES 3

Re: How do I uninstall a module?

Hello @Sheba 

If you have installed the extension with composer, you can uninstall by running command.

php bin/magento module:uninstall webkul_shipping

Last is extension name.

 

If you did not install the module via composer, it won't work.
You can only disable it via bin/magento module:disable Webkul_shipping

To remove the module, remove the folder Webkul/Shipping, remove the record with module = 'Webkul_Shipping' from the table setup_module and remove any other tables or records added by the install of the module.
Also remove the line with Webkul_Shipping from app/etc/config.php

Was my answer helpful? You can accept it as a solution.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

Re: How do I uninstall a module?

Thanks for your response. Webkul installed it, not sure if they used
Composer. I've asked them to uninstall it and they haven't.
That's why am trying to uninstall it.

Re: How do I uninstall a module?

@Sheba if webkull installed it then they might have installed it using composer so you can uninstall it using the uninstall command suggested by @theMageComp .

 

Thanks