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 jEjPS](https://community.magento.com/t5/image/serverpage/image-id/13741iE96571913E9A7532/image-size/large?v=v2&px=999)
Any idea how I can fix this problem?