Skip to main content
All CollectionsSupplementary GuidesWordPressGeneral
How to Improve PHP Memory Limit in WordPress
How to Improve PHP Memory Limit in WordPress
Rapyd Team avatar
Written by Rapyd Team
Updated over a week ago

Is your WordPress site suffering from memory exhaustion? Fear not. The PHP memory limit in WordPress can be easily adjusted. This article will take you through the necessary steps to enhance your PHP memory limit, ensuring smoother performance and fewer site hiccups.

The PHP memory limit determines the amount of memory a script can consume. In WordPress, certain plugins, themes, or tasks require more memory than the default set up, potentially leading to errors. Understanding and adjusting this limit can be crucial for the site's optimal performance.

Understanding PHP Memory Limit in WordPress

The PHP memory limit is the maximum amount of server memory that PHP scripts are allowed to use. By default, WordPress attempts to increase the PHP memory limit if it's less than 64MB. However, sometimes the requirements of your website, especially with resource-intensive plugins or themes, may exceed this default.

Why Might You Need to Increase the Memory Limit?

Encountering errors like "Fatal error: Allowed memory size of xxxxxxx bytes exhausted" is a clear indicator. Other reasons include:

  1. Using resource-heavy plugins or themes.

  2. Expanding the site's complexity and features.

  3. Enhancing site performance during traffic spikes.

Methods to Increase PHP Memory Limit

  1. Edit the wp-config.php file: Access your WordPress root directory via FTP or cPanel. Locate and edit the wp-config.php file by adding the line: define('WP_MEMORY_LIMIT', '256M');

  2. Modify the .htaccess file: Navigate to the root directory and find the .htaccess file. Add the line: php_value memory_limit 256M

  3. Update the php.ini file: Some hosts allow you to adjust the php.ini file directly. In this file, look for the line memory_limit and modify it to your desired value, e.g., memory_limit = 256M.

Note: Always back up your website before making any changes to core files.

Verifying the Memory Limit Increase

After making changes, it's essential to ensure they've taken effect:

  1. Install and activate the "WP-ServerInfo" plugin.

  2. After activation, go to Dashboard > WP-ServerInfo. Here, you can see the 'PHP Memory Limit' value which should reflect your recent changes.

Conclusion

Optimizing the PHP memory limit is an essential step in maintaining the health and performance of your WordPress website. While the default settings work for many sites, as your website grows and evolves, so do its requirements. By understanding and adjusting the PHP memory limit, you empower your site to function at its best, providing an uninterrupted and speedy experience for your visitors.

Did this answer your question?