What should I set PHP memory limit to?
Table of Contents
A typical appropriate memory limit for PHP running Drupal is 128MB per process; for sites with a lot of contributed modules or with high-memory pages, 256MB or even 512MB may be more appropriate. It’s often the case that the admin section of a site, or a particular page, uses much more memory than other pages.
How do I fix memory size in PHP?
23 Comments
- Add ini_set(“memory_limit”,”16M“); to the beginning of your individual PHP file that causes the error. For example, if index. php is causing the error, add to the top of index.
- Change the memory_limit= line in your php. ini file.
- Add the memory_limit= line to your . htaccess file (or create a .
How do I increase the memory limit of my website?
You can increase your host memory limit by following any of the five methods mentioned below.
- Most Recommended: Just Contact Your Host.
- Increasing Memory Limit via PHP.ini file.
- Alternative to editing PHP.ini through wp-config.php.
- Changing memory Limit in wp-config.php.
- Modifying the .htaccess file.
How do I change the memory limit in PHP ini xampp?
Open PHP. ini file and locate memory_limit. You just need to change the amount in front of memory_limit to increase your PHP memory limit in XAMPP. Make sure you save your changes.
How do I check my PHP memory limit?
Show activity on this post.
- PHP-CLI: Command line to check ini: $ php -r “echo ini_get(‘memory_limit’);” Or check php-cli info and grep memory_limit value: $ php -i | grep “memory_limit”
- PHP-FPM: Paste this line into index.php or any php file that can be viewed on a browser, then check the result:
How can I increase memory size?
Increasing Virtual Memory in Windows 10
- Go to the Start Menu and click on Settings.
- Type performance.
- Choose Adjust the appearance and performance of Windows.
- In the new window, go to the Advanced tab and under the Virtual memory section, click on Change.
What is PHP memorylimit?
The PHP memory_limit is the maximum amount of server memory that each PHP script is allowed to consume. Per the PHP documentation: “This sets the maximum amount of memory in bytes that a script is allowed to allocate. This helps prevent poorly written scripts from eating up all available memory on a server.”
How can I increase PHP time limit in Bluehost?

Using an FTP Client
- Connect to the server with your FTP client.
- Navigate to the public_html folder.
- Download the php.
- Open the file with any text editor.
- Search for memory_limit, without the quotes.
- Enter the new memory limit for your php applications.
- Save the file.
- Upload the file using your FTP client.