How to Deactivate all WordPress Plugins
Disable / Enable all plugins using the MySQL
Find your wp_options table and look for the option_name activate_plugins.
Disable
If you want to disable all the plugins, empty the activate_plugins value.
UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
Enable
If you saved the field value you can paste it again and it will active them all
Related PostsIf you liked How to Deactivate all WordPress Plugins; the posts below might interest you too:
|



