Hi,

We can easily disable all WordPress plugins directly from database. This is useful when some problems with WordPress installation such as not being able to log in to the admin area or having blank pages. To disable all plugins log in to phpMyAdmin and select your WordPress database from the menu on the left and execute this query to disable all WordPress plugins:

UPDATE wp_options SET option_value = ” WHERE option_name = ‘active_plugins’;

NOTE: disabling the plugins will not remove them from WordPress application. They will simply be deactivated. We can easily activate them from WordPress admin area.

Thanks,

Shane G.

Popularity: 5%

Related posts:
  1. How to deactivate all wordpress plugins from PHPMyAdmin? Hello All, In order to deactivate all wodpress plugins when...
  2. How To Enable/Disable Plugins Feature From Site Admin In Wordpress MU? Hi, Sometimes we may require to disable Plugins feature from...
  3. Script To Disable Pingbacks From MySQL Database in WordPress? Hello All, In order to disable Pingbacks from MySQL database...
  4. Database Query to Enable/Disable Comment Option For Wordpress Blog Hi, We can enable/disable comment option from database also. For...
  5. How to deactivate all plugins when not able to access the administrative menus? How to deactivate all plugins when not able to...

Leave a Reply

You must be logged in to post a comment.