If you're fetching large collections in memory it is possible that you hit the default memory limit for PHP (usually 8MB).
You can circumvent this behaviour by removing or increasing the memory limit in your environment settings by adding:
ini_set('memory_limit', -1);
On testing environments the memory limit is removed, but on production that decision is left to developers.
Regards,
Bermi
Ok, that worked!
Thanks again! :)
1 to 3 of 3