I\'m writing a codeigniter application, upon doing a query i get hit with the following fatal error.
Fatal error: Allowed memory size of 134217728 byt
Your code looks fine. Check if some function is getting called repeatedly.
You could use
ini_set('memory_limit', '-1');
as a temporary solution. or just increase the memory_limit
Chceck you php.ini
file. If it is in the below form,
memory_limit=8G
Change that in the form of MB
memory_limit=8192M
You can also do it in your code like
ini_set('memory_limit', '8192M');