GoDaddy Help

Troubleshoot WordPress plugin errors

You can use the steps below to diagnose WordPress plugin issues.

Prepare your WordPress site for the troubleshooting:

  1. You should always make a backup of your site before performing any troubleshooting.
  2. Disable any caching plugins.
  3. Disable WP_CACHE if your site uses it.

Look for a plugin-related error:

  1. Enable WordPress debug mode.
  2. Visit your site and check to see if there is a PHP error.
  3. If there is a PHP error, check to see if the plugins directory is in the file path. Below is an example:
    Parse error: syntax error, unexpected '}' in /home/html/wp-content/plugins/basic-plugin/basic-plugin.php on line 50
  4. If the file path contains plugins in it, then this suggests the issue is with the plugin referenced in the error, and you can move on to fixing the issue.
  5. If the error isn't visible on your website, then you'll need to expose the error:
  6. If the detailed errors or logs show a PHP error, then you can begin fixing it.
  7. If you can't locate an error, then you should disable all of your plugins, if you haven't already done so.
  8. Enable the plugins one at a time until the problem or error occurs.
  9. Once an error occurs, then you have likely identified the plugin causing the problem. You can then move on to fixing it.

Related steps

More info