cancel
Showing results for 
Search instead for 
Did you mean: 

Uninstall Magento 2.3 module (including database data)

Uninstall Magento 2.3 module (including database data)

I am trying to uninstall some modules in my Magento 2.3.1, I followed the following steps:

 

Remove the module Vendor_% from app\etc\config.php
Drop module tables or columns from database, please check app\code\Vendor\Module\Setup folder for more information
Remove the folder app\code\vendor/%
Remove module configuration settings from core_config_data table by running the following query
DELETE FROM core_config_data WHERE path LIKE 'vendor%';
Remove module from setup_module table by running the following query
DELETE FROM setup_module WHERE module LIKE 'vendor_%';
SSH Server
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush

 

The problem is that after doing all this I receive the following error message:

 

jEjPS

 

Any idea how I can fix this problem?

1 REPLY 1

Re: Uninstall Magento 2.3 module (including database data)

Try to remove
var/cache 
generated
Viewprocessed 
Pub/static/frontend and then try to upgrade, compile and deploy static content. It seems that the classes are still getting called somewhere.