wordpress

How to disable WordPress plugin ?

How to disable WordPress plugin ?

How to disable WordPress Plugin in console ?
How to remove plugin in wordpress ?
How to un-active plugin in wordpress ?
Cannot login in wordpress because of plugin ?
How to deactivate plugin in wordpress ?
How to disable plugin in wordpress ?
Disable wordpress plugin in shell.
How to disable WordPress plugin using phpMyAdmin ?

wordpress
I cannot login to my justin.my just now because of some of the plugin is not working and make the wordpress crash with error message.
I can’t even login to my wordpress admin place.

The only thing I can do, is to stop all the plugin that I’ve installed.

To stop those plugin, I’m using the method below.

You must have mysql access to your database. Because all the data were stored in mysql database.

Login to your shell,

access to MySQL

# mysql -u[username] -p

use the database that store your wordpress data.

mysql> use ‘wordpress_database’;

This will show out those tables that are activated.
mysql> SELECT * FR0M wp_options WHERE option_name = ‘active_plugins’;

It will show something like that.
| 38 | 0 | active_plugins | a:30:{i:0;s:43:"advertising-manager/advertising-manager.php";i:1;s:19:"akismet/akismet.php";i:2;s:43:"all-in-one-seo-pack/all_in_one_seo_pack.php";i:3;s:53:"facebook-comments-for-wordpress/facebook-comments.php";i:4;s:34:"feedburner-plugin/fdfeedburner.php"

The following command will disable all the plugin
[adrotate banner=”2″]
mysql> UPDATE wp_options SET option_value = ” WHERE option_name = ‘active_plugins’;

After run this command in mysql, all the plugin inside your WordPress will be deactivated. You have to activate one by one to check out which plugin that make your site crash. or appear the error message.

I’ve another solution is using phpMyAdmin.

Login to your phpMyAdmin with your database password.

run the following query to disable the WordPress plugin.
[adrotate banner=”1″]

UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';

Please do backup all your database before do anything above.

Tags:

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.