If youโre seeing the WordPress Max Execution Time Exceeded error, youโre not alone. This is a common error caused by a PHP script that isnโt completing within the allocated time.
While WordPress says itโs a โfatalโ error, it doesnโt mean itโs fatal to your website, only to that particular process. Your websiteโs front end should still be working as normal and you should still be able to perform other tasks.
It will be just that the particular task that gave you that error wonโt be able to complete.
These errors can cause your website to become unresponsive though so you shouldnโt ignore it!
In this post, we will outline common causes of the error and walk you through several ways to address it.
By the end of this article, you should have fixed the error and be happily using your website once more!
What Is the WordPress max_execution_time Fatal Error?

While WordPress will display the friendly version of the error, the actual syntax for this error is โmax_execution_timeโ rather than Fatal Error Max Execution Time Exceeded.
Weโll use both interchangeably.
Fatal Error Max Execution Time Exceeded is caused by a script within your website that didnโt complete within the PHP time limit.
WordPress has a time limit of 30 seconds built into it for each PHP script to execute and complete. The idea is to allow enough time for a function to complete but not give it so long that it hangs and freezes the entire site.
To that end, WordPress has a time limit set so PHP can execute a script and complete it.
If the script doesnโt complete in time, PHP will terminate it so it can move on to another and keep your website functioning.
Why Does the WordPress max_execution_time Fatal Error Occur?

Most web hosts enforce PHP limits to preserve server resources. As WordPress is built on PHP, itโs a common target for hackers and malware but also uses up server resources that might be required for other functions.
Web hosts need to maintain efficiency while allowing every website on each server access to shared resources. A PHP time limit is one way to achieve that.
Most web hosts will place a PHP time limit of between 30 to 60 seconds to enable websites to use plugins, themes and scripts but also to keep things working.
If a script, plugin or theme is poorly coded or has been subjected to malware, it may exceed this time limit and produce the error.
It isnโt the most user friendly error youโll ever see, so itโs important to understand that while it says โFatal Errorโ, it is referring to that particular process and not your website!
How to Fix the WordPress max_execution_time Fatal Error

There are a few things you can do to fix the error. Weโll outline a few of them below.
First, we need to know whatโs causing the error and stop it. Then we can work out any remedial actions afterwards.
Identifying the Cause of Fatal Error Max Execution Time Exceeded
Sometimes, WordPress will tell you whatโs causing the problem. In the image above, you can see the error occurs during the plugin update process. This gives us a clue as to whatโs causing it.
Other instances of the error will also give you a clue. Error messages with file names beside them can help identify the cause. Other messages with โLearn more about debugging in WordPressโ or something similar may also provide a clue
You may also receive an email from your WordPress website telling you what happened. This feature was introduced in WordPress 5.2 to help you identify plugins, themes or processes causing errors.
Check all of these to identify what went wrong.
If itโs a plugin, remove it or look for an update. You could also check the pluginโs website, use their support function or ask for help on its forum if it has one. If it happened to you, it likely happened to others.
If the error occurs during a WordPress plugin update, donโt select all the plugins at once. Select 4-5 plugins using the checkbox, update those and repeat until all your plugins are updated. Or use the new auto update feature in WordPress.
If itโs your WordPress theme, change it to the default Twenty Twenty-One theme and retest. Here is the guide to changing the WordPress theme.
If you see this error frequently and itโs nothing to do with a plugin, you can manually extend the PHP time limit with a couple of file tweaks. Thereโs also a plugin for that if you prefer.
We recommend trying to identify the script thatโs causing the error and addressing that directly rather than just extending the time limit. That time extension is just a workaround and isnโt addressing the root cause.
Itโs up to you though.
Edit .htaccess

Your .htaccess file controls access to WordPress and access to some server resources. You can add a PHP time limit instruction within .htaccess to add more time for the script to complete.
- Log into your web host and access the file manager
- Navigate to your public_html file and select .htaccess
- Right click .htaccess and select copy
- Name the copy .htaccess.bk so you always have a spare
- Right click the original .htaccess file and select Edit.
- Add the following code to the file and save
php_value max_execution_time 300
Edit wp-config.php

You can modify the wp-config.php file to extend the PHP time limit and prevent the error. The same process as .htaccess, only this time youโre modifying wp-config.php instead.
- Log into your web host and use cPanel or their management tool to access the file manager
- Navigate to your public_html file and select wp-config.php
- Right click wp-config.php and select copy
- Name the copy wp-config.php.bk so you always have a spare
- Right click the original wp-config.php file and select Edit.
- Add the following code to the file and save
set_time_limit(300);
This should be enough to stop the error occurring.
Edit php.ini

You can also edit the php.ini file within WordPress to achieve much the same thing. If youโre not comfortable editing the very important .htaccess file, you make be more comfortable editing php.ini instead.
Itโs almost exactly the same process as above.
- Log into your web host and access the file manager
- Navigate to your public_html file and select php.ini
- Right click php.ini and select copy
- Name the copy php.ini.bk so you always have a spare
- Right click the original php.ini file and select Edit
- Add the following code to the file and save
max_execution_time = 300
As youโre in a PHP file, you donโt need to specify that itโs for PHP.
Use the WP Maximum Execution Time Exceeded Plugin

Normally in our guides, if there is a plugin solution to a problem, we put that first. As this error is caused by a plugin, we appreciate you might be hesitant to use one plugin to fix an issue with another.
However, the WP Maximum Execution Time Exceeded plugin means you donโt have to modify any of your files to fix the PHP time limit issue.
The developer recommends taking a backup of your website before you install the plugin but if you follow the steps above to make a copy of your .htaccess file, that should be enough.
Then:
- Log into WordPress and select Plugins > Add New
- Search for Use the WP Maximum Execution Time Exceeded and select Install
- Select Activate once the option becomes available
There is no configuration with the plugin. It simply adds the code to your .htaccess file giving 300 seconds (5 minutes) to the PHP time limit.
How to Prevent the WordPress max_execution_time Fatal Error
Prevention is always better than cure and itโs no different with WordPress. If youโre unfortunate enough to experience website downtime as a result of the error, prevention is especially important.
There are a couple of ways you can do this.
Troubleshoot Plugins

If you think itโs a plugin causing the timeout, you can use the process of elimination to figure out which is causing it.
This will only work if the problem appears regularly. Intermittent errors are much more difficult to isolate.
- Disable all plugins and gradually activate them one by one
- Recreate the situation that causes the error
- Rinse and repeat one plugin at a time until you identify what plugin is causing the problem
Troubleshoot Your WordPress Theme

It is rarely your WordPress theme that contains a script complicated enough to time out but it is possible. If you have tried troubleshooting your plugins with no luck or you hit the PHP time limit when updating the theme, that could be the culprit.
The simplest way to find out is to switch the theme for the default and retest it.
- Navigate to Appearance > Themes
- Select Twenty Twenty One and select Activate
- Try to recreate the error
If you can recreate the error with the default theme, it isnโt the theme at fault. If the error goes away, the theme is calling a PHP script thatโs timing out. Follow up with the developer or upgrade your WordPress theme to Astra as we donโt use bloated scripts.
Ask Your Web Host to Increase max_execution_time
If your WordPress website has grown so much that scripts are regularly timing out, you may need to upgrade your hosting plan or ask your host to extend the time.
There are a number of scripts that can run within WordPress that slow down for larger sites. If this becomes a regular issue, youโll need to discuss it with your host to explore your options.
The PHP Time Limit in WordPress
In the vast majority of cases, itโs a poorly designed plugin exceeding the PHP time limit causing WordPress max_execution_time errors. The process we outlined in this post for disabling plugins and testing them or increasing the PHP time limit should work.
If itโs something else causing timeouts, you now have the tools at your disposal to identify and troubleshoot them.
We hope it helps!
Have you experienced this error with a different cause? Have any other fixes for scripts hitting the PHP time limit WordPress? Share your thoughts below!

Pratik Chaskar holds the pivotal role of CTO at Brainstorm Force, serving as the backbone of the company. Renowned for his organizational skills, strategic thinking, problem-solving attitude, and expertise in leading and executing plans, Pratik plays a crucial role in the BSFโs technological landscape.
Disclosure: This blog may contain affiliate links. If you make a purchase through one of these links, we may receive a small commission. Read disclosure. Rest assured that we only recommend products that we have personally used and believe will add value to our readers. Thanks for your support!