WP SQL – Batch disable all plugins
18 Juil 2013, Posted by inSometimes, for exemple when you have to upgrade your blog, you need to disable all your plugins. Depending to how much plugins you’re using, it can takes a lot of time and be kinda boring. Here is an useful SQL query to disable all your plugins at once!
UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
→ Source: http://www.wprecipes.com/how-to-disable-all-your-plugins…