3
votes

After I have moved GoDaddy to a different server VPC Wordpress shows

Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 72 bytes) in /home/rm/public_html/wp-includes/pomo/streams.php on line 110

When I try to log in as admin:

Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 78 bytes) in /home/rm/public_html/wp-includes/pomo/mo.php on line 297

What can I do to resolve this issue?

1

1 Answers

0
votes

You need to paste this code in wp-config.php file.

define( 'WP_MEMORY_LIMIT', '256M' );

This code tells WordPress to increase the PHP memory limit to 256MB.

I hope this will help you.