- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Correct way to uninstalling an extension located in the vendor folder
Hi all wonder if you can help?
I have an extension module-eacore by eadesigns located in vendor folder how do I remove all traces of this extension? It does not show up in the websetup interface so can't uninstall it from there, I have tried to manually remove all files and the info in setup_module but end up with errors and can't get the site back online.
So how do you remove this correctly.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Correct way to uninstalling an extension located in the vendor folder
running Magento 2.1.7
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Correct way to uninstalling an extension located in the vendor folder
To remove vendor module by composer, you can run the below command:
php composer.phar remove vendor/package
OR if composer is already installed then use the below one:
composer remove vendor/package
Have a fun
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Correct way to uninstalling an extension located in the vendor folder
Hi @incarpaul,
If you're module was installed using composer, you can uninstall the module using the Magento console:
bin/magento module:uninstall Vendor_Module
More information: http://devdocs.magento.com/guides/v2.1/install-gde/install/cli/install-cli-uninstall-mods.html#instg...