Memory size exhausted Error in PHP, Opencart, Wordpress
Hi, I getting below error in my opencart website.
: Allowed memory size of 67108864 bytes exhausted (tried to allocate 20000 bytes) in
/home/xxx/example.com/system/library/image.php
to solving this error.
I added these below code after placing it at the beginning of the file. and problem has been solved.
ini_set('memory_limit', -1);
For detail information. I also followed this Q/A.