Disabling plugins can be useful if there are problems with the site and there is no access to it adminpanels.
wp-content/plugins
.plugins
).Disabled plugins can be enabled back by returning their original names to directories.
UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
If the names of the tables in the database do not start with the standard wp_
and with a different prefix, make the appropriate changes to the SQL queries.
Deactivated plugins can later be activated via Adminpanel WordPress in the usual way.