1 min read
Disable WordPress plugins manually
With the WordPress 3.9 Update I also received several plugin updates for my blogs.
One Update was for WP-Piwik. As I’ve updated the plugin I got several errors and the site become unreachable.
So the only way the to disable this malicious plugin was either via ftp or with phpMyAdmin.
I’ve decided to do it with phpMyAdmin.
The settings for the plugin activation are stored in the wp_options
table.
To get the data for the activated plugins run this sql statement:
SELECT * FROM wp_options WHERE option_name = 'active_plugins';
By editing the option_value field you’ll get a semicolon separated list of plugins and by simply removing a value you’ll deactivate the plugin.
For WP-Piwik it was:
i:8;s:21:"wp-piwik/wp-piwik.php";
Tags: plugin , wordpress
Edit this page
Show statistic for this page