Manually Disable All WordPress Plugins via the Database

Manually Disable All WordPress Plugins via the Database


Login to your database

select the appropriate database.

Issue the following command

UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
 
In the above command wp_options is a table name, this can be different on your system.
The format is table prefix (in this case its wp) followed by an underscore and name.