How to Deactivate all WordPress Plugins

08 November 2011 by Rick ~ 0 Comments 728 views

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 :)

Subscribe by E-mail:

« »
Add a Comment

Use [code] example piece of code [/code] to insert code into your comment.