Are you frustrated with the common “Allowed memory size exhausted” error on your WordPress site? Don’t worry, it’s a frequent issue that can be easily resolved by adjusting the PHP memory limit. In this article, we will discuss five simple methods to fix the WordPress memory exhausted error and get your site running smoothly again.
Method 1: Edit the wp-config.php File
The first method involves making changes to the wp-config.php file on your WordPress site. You can access this file using an FTP client or the file manager in your web hosting control panel. Simply add the following line of code just before the line that says “That’s all, stop editing! Happy blogging.”
define( 'WP_MEMORY_LIMIT', '256M' );
This code increases the PHP memory limit to 256MB. Save the changes and upload the file back to your server. This should resolve the memory exhausted error.
Method 2: Adjust the .htaccess File
Another method is to edit the .htaccess file located in the root folder of your website. Insert the following code before the line “#END WORDPRESS”:
php_value memory_limit 256M
Save the changes and upload the file back to your web server. Visit your WordPress site to check if the memory limit error has disappeared.
Method 3: Examine Your php.ini File
If the above methods don’t work, you can check your php.ini file. This file controls your PHP settings, including the memory usage limit. However, please note that this method is more advanced and may require assistance from your web hosting provider’s support team. It’s crucial to edit the php.ini file correctly to avoid any further errors.
Method 4: Utilize a Plugin
If manually editing files seems daunting, you can use a WordPress plugin to increase the PHP memory limit. There are numerous plugins available that simplify this process. Install and activate a memory limit plugin from the WordPress repository, follow the instructions provided, and your memory exhausted error should be resolved.
Method 5: Upgrade Your Hosting Plan
If none of the above methods work, it may be necessary to consider upgrading your hosting plan. Sometimes, the memory limit is set by your hosting provider. Upgrading to a higher plan that offers more memory resources could be the solution. Get in touch with your hosting provider’s support team for assistance with the upgrade.
In conclusion, the WordPress memory exhausted error can be fixed by adjusting the PHP memory limit. Try out the methods discussed in this article and choose the one that suits you best. Remember to save your changes and thoroughly test your website to ensure that the error has been resolved. If you found this article helpful, make sure to stay updated with our YouTube Channel for WordPress video tutorials. Additionally, follow us on Twitter and Facebook for more valuable tips and tricks.