Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
wordpress:disable-plugins [2014-07-25 18:02:18]
rory.blanchard
wordpress:disable-plugins [2014-07-25 18:08:41]
rory.blanchard
Line 30: Line 30:
  
 This will disable all active plugins, but will not delete or modify them. This will disable all active plugins, but will not delete or modify them.
 +
 +==== If you don't have phpmyadmin ====
 +
 +You can also run a query through the command line.
 +
 +Log in through SSH and execute the following commands.
 +
 +<code>
 +root@example# mysql <database name>
 +root@example# UPDATE wp_options SET option_value = 'a:0:{}' WHERE option_name = 'active_plugins';
 +</code>
 + ----