Published
- 1 min read
php memory_limit unlimited
The solution for this is noted below
php memory_limit unlimited
Solution
//Unlimited momory limit
ini_set('memory_limit', '-1');
//Fixed memory limit
ini_set('memory_limit','2048M');
Try other methods by searching on the site. That is if this doesn’t work