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
Put this line on your codeigniter's index.php. So it will be affected for whole project.
ini_set('memory_limit', '-1');
Note: This is just a quick fix. This bug has not been resolved in php itself.