We have transferred numerous client
websites, and sometimes a WordPress Memory Exhausted error shows up when
activating a new plugin or doing some other task. Usually the error
looks like this:
We got an email from a user who was facing the same problem, so we
decided to do a writeup on it because this is a common problem. The
reason why this error shows up is because you exceed your default Memory
Limit. There are numerous solutions for it, but in this article we will
share the simplest one out of all.
First open your wp-config.php which is located in the root WordPress directory. Then add the following line inside the main php tag:
We just increased the memory limit to 64M. If you still get the error
after this fix, then please contact your host. Most likely, they would
have to go in their php.ini file to increase the memory limit for you.
If you have other ways of increasing the memory limit, then let us know
in the comments below.
First open your wp-config.php which is located in the root WordPress directory. Then add the following line inside the main php tag:
1 | define( 'WP_MEMORY_LIMIT' , '64M' ); |
0 comments:
Post a Comment