Where do I increase PHP memory limit in WordPress?
Table of Contents
Edit your PHP. ini file
- Locate or find your php. ini file.
- Use your favorite editor to open and edit your php. ini file.
- Look for the line that says ‘memory limit = 32M’.
- Change the 32M or some other number to the desired limit (e.g. 256M or 512M).
- Restart your local host or server after saving your changes.
How do I set memory limit in WordPress?

Increase the WordPress memory limit
- Access files in your Managed WordPress account.
- Locate the file wp-config.
- Double-click the wp-config.
- Select Edit.
- Find the line /* That’s all, stop editing!
- Right above the line in step five, add this code: define(‘WP_MEMORY_LIMIT’, ‘256M’);
- Select Save.
How do I check memory size in WordPress?
If you’re running WordPress 5.2 or above, you can use the Site Health tool to check what the current PHP memory limit is on your site. In your WordPress dashboard, go to “Tools” → “Site Health” → “Info” and scroll down to the server section. Here you can see that the PHP memory limit is on your server.
What is ideal PHP memory limit?
128 MB
You should set your PHP memory limit as low as you can while still allowing your site to function normally. 128 MB is a good baseline. That’s a decent amount of memory that will take care of most intensive plugins. If you know you’re going to need some extra power, 256 MB will cover even the heaviest plugins.

How do I change PHP limits in WordPress?
How to Increase the PHP Memory Limit in WordPress
- Edit your wp-config. php file.
- Edit your PHP. ini file.
- Edit your . htaccess file.
- Use a memory increase plugin.
- Contact your hosting provider.
How do I increase my memory limit?
How to change memory limits
- Locate the php. ini file used by your web server. You can click the “more information” link on Drupal’s status page’s PHP section.
- Edit the memory_limit parameter in the php. ini file (usually in a section called Resource Limits).
- Restart Apache.
How do I check my PHP memory limit?
You can check it from your php. ini file. Execute php -i | grep “php. ini” on command line and check memory_limit in your Loaded Configuration File.
Where is PHP ini file in WordPress?
Login to your hosting panel. Open File Manager. Php. ini file is located in the Root directory.
Where do I change PHP max input variables?
PHP obtains input variables from HTML forms (through GET and POST requests), as well as from any cookies enabled on a page. By default, the maximum number of input variables allowed for PHP scripts is set to 1000. You can change this amount by setting the max_input_vars directive in a php. ini file.
How do I change PHP settings in WordPress?
What are the best WordPress/ PHP settings?
- Find php.ini in Public_html folder, right-click it and choose “edit” and click “edit” again.
- In the text editor add following code: upload_max_filesize = 32M. post_max_size = 48M. memory_limit = 256M.
- Click “Save changes” in the top right corner and close the window.
How do I edit WordPress config?
Once you locate the file in the root directory, you can download wp-config and edit it using a text editor like Notepad. Or you can right-click the file and edit the file inside cPanel directly.
Should I increase PHP memory limit?
PHP memory_limit is per-script, just as a highway’s speed limit is per-vehicle. Now regarding the original example mentioned at the outset. A lower setting of 128M is always better because if PHP scripts are trying to use more than 128M, those scripts would now return memory limit exceeded errors.