How to fix 500 internal server error WordPress

What is error 500?

The 500 internal server error is a common and rather unpleasant error that may occur on a website.

How to fix 500 Internal Server Error on WordPress

If you’ve ever seen this error message when opening your website, you know the feeling of frustration and maybe even panic from not knowing the reason behind it. Yes, the major problem with it is you don’t know for sure what causes the error in the first place.

Potential causes of the error 500

The full name of the error explicitly points out that the issue is a server-side one. Simply put, something prevents your server from loading the files of the requested page correctly. However, you don’t get much more information from the error message itself. 

If you see this worrisome message about an internal server error, it can be the result of exceeding memory limits set in your configuration files. Looking for an issue there implies code editing, but don’t worry: this is not going to be overly complicated. Stay with us, and we will show you the way.

How to fix 500 Internal Server Error on WordPress

Get ready: finding your way out requires some troubleshooting.

Site backup

Before exercising any of the methods to fix the internal server error, create a backup of your website. Cloning your content and storing the copy somewhere is what will keep your website safe regardless of what you do.

There are many special plugins for creating backups (and many other ways of doing so). UpdraftPlus is a great free plugin you can use.

How to fix 500 Internal Server Error on WordPress

Creating backups is a good practice in general. You don’t want to lose any information; so, make sure you set a schedule to have everything saved.

FTP access

Most of the following solutions require that you FTP into your site. If you are not familiar with what it is, in short – it is a protocol that grants you more rights for working with your root directory files.

First, you need to install an FTP client if you don’t have it yet. Choose any of the popular ones like FileZilla and download it. Once you have it installed, you need to create an FTP account.

Now that you have FTP access, you can upload and change the files in the WordPress root directory.

How to fix 500 Internal Server Error on WordPress

But, as the saying goes, with great power comes great responsibility: editing those files brings essential changes to your site. With that said, be cautious when configuring anything and try to avoid going beyond recommendations if you’re not an experienced developer.

Solutions

To start fixing the problem, it is helpful to know some more specificities. There is a great debugging technique that will show you what was the cause in your case.

*A reminder for you to check if you have a backup!*

In your root directory, find the “wp-config.php” file and open it.

How to fix 500 Internal Server Error on WordPress

Find the define('WP_DEBUG', false) line. It is set to false by default, but if you change it to true, you will get a new, more detailed error message on refresh.

Also, if you add two more lines:

define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );

you will have all errors listed in the debug.log file in your wp-content folder.

And: moving on with the fixing.

Theme or plugin conflicts

Not all the plugins on WordPress are compatible with each other. Sometimes the error occurs, for instance, when you try to load your Woocommerce order checkout page. This may happen due to the conflict between the plugins and/or the theme you use. 

Disable all the plugins apart from Woocommerce.

How to fix 500 Internal Server Error on WordPress

If you don’t get the error message, then it was one of your plugins. Try activating them back one at a time to find out which one was the original cause. Once you’ve detected it, either find a substitute for it or contact the plugin developer.

For more recommendations on this specific issue, read the WooCommerce self-service guide.

The theme you use can also be the trigger. Here, the general pattern is the same: you disable the potential cause. Switch to the default WordPress theme and see if it solves the problem. If it does, consider changing the theme.

Increase your PHP memory limit

PHP is responsible for handling user requests. When you exceed the memory limit, you get a fatal error, because there are no resources to process that request. Your permissions may be simply too low to perform such a process.

The default memory limit set by WordPress is often below 64M (32M is quite common). To increase it, you need to change the value to a bigger one in one of the following files:

  • “.htaccess”

Open the file and add this:

<IfModule mod_phpX.c>
php_value memory_limit 64M
</IfModule>

where X is your PHP version (one digit; i.e. if you have PHP 7.3.11, put 7).

NB: leave the name unchanged; otherwise, you may disrupt some core information.

  • “wp-config.php”

In this file, find the line that says

/* That's all, stop editing! Happy blogging. */

and paste

define('WP_MEMORY_LIMIT', 'X');

right above it, where X is the value you need (64, 128, etc.). If this line is already in place, change the numeric value to a bigger one.

  • “php.ini”

This configuration file contains the line that starts with a memory_limit setting. Change the value that goes after it and check if it worked.

The memory_limit setting limits the memory consumed per script. That is, it is not the total memory size we configure. All scripts together can amount up to a bigger value as long as no single one of them exceeds the limit set.

Change your wp-admin & wp-includes files

You can try the most radical way – getting fresh wp-admin and wp-includes folders. Download them from WordPress.org and upload to your root directory (again, as long as you’ve saved a backup of your site).

Contact hosting

When you’ve tried everything, but you still get the error message, it is time to contact your hosting provider. The issue can be on their side.

This is the last one on the list because when you call them, the first thing they will likely ask you is whether or not you’ve done any troubleshooting. After trying out all the fixes from above, tell them what you’ve already done. By doing so, you let them know the error isn’t the result of any of your activities.

Start growth with our help

If you’re having trouble managing your WordPress site, or it takes up too much of your time, we are here to help!

Why wasting time tinkering in ugly code structures and searching for solutions on forums when you can have professional developers doing it all for you?

We are BDA – strong WordPress experts ready to make your website healthy and efficient.

Feel free to contact us and see how we can help you grow and prosper.

Alex Belov

Alex is a professional web developer and the CEO of our digital agency. WordPress is Alex’s business - and his passion, too. He gladly shares his experience and gives valuable recommendations on how to run a digital business and how to master WordPress.

Comments

Leave a Reply

(Your email address will not be published)