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
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
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.