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
Last revision Both sides next revision
wordpress:disable-plugins [2014-07-25 18:08:41]
rory.blanchard
wordpress:disable-plugins [2014-07-25 18:12:36]
rory.blanchard
Line 12: Line 12:
 ---- ----
  
-You may have a plugin that is preventing wordpress from functioning correctly. It possible to disable a wordpress plugin by logging into phpmyadmin, selecting your wordpress table, which is usually your username followed by _wp1.+You may have a plugin that is preventing wordpress from functioning correctly.  
 + 
 +==== PHPMyAdmin Method ==== 
 + 
 +It possible to disable a wordpress plugin by logging into phpmyadmin, selecting your wordpress table, which is usually your username followed by _wp1.
 \\ \\
 \\ \\
Line 31: Line 35:
 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 ====+==== Command Line Method ====
  
 You can also run a query through the command line. You can also run a query through the command line.
Line 39: Line 43:
 <code> <code>
 root@example# mysql <database name> root@example# mysql <database name>
-root@example# UPDATE wp_options SET option_value = 'a:0:{}' WHERE option_name = 'active_plugins';+Mysql> UPDATE wp_options SET option_value = 'a:0:{}' WHERE option_name = 'active_plugins';
 </code> </code>
  ----  ----