How do I uninstall a module in 2.3.3? Need to remove Webkul's Shipping module.
Solved! Go to Solution.
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
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
@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