How to find Fatal error: Out of memory wp-db.php [duplicate]

0

What makes this error in wordpress and how to fix it

Fatal error: Out of memory (allocated 247988224) in /backup/public_html/wp-includes/wp-db.php on line 1094

    
asked by anonymous 08.09.2015 / 23:26

1 answer

1

This error is not specific to Wordpress, but PHP is breaking the memory limit.

You can increase the memory limit:

By code

ini_set('memory_limit','QTDE_MEMORIA');

By php.ini

memory_limit = QTDE_MEMORIA;

In this tutorial , there are 4 ways to increase the memory of your PHP.

    
08.09.2015 / 23:42