OpenCart中出现以下错误:
Fatal error: Allowed memory size of 2097152 bytes exhausted (tried to allocate 8192 bytes)
文件:第149行上的\ system \ storage \ vendor \ twig \ twig \ lib \ Twig \ Extension \ Core.php
我不明白这是什么意思,因为分配的内存小于允许的大小。以及如何解决?
答案 0 :(得分:0)
从opencart文件夹编辑php.ini文件,并增加“ memory_limit”的大小,直到错误消失
memory_limit = 128M;
OR
编辑“ config.php”和“ admin / config.php”在末尾添加以下代码
ini_set('memory_limit', '128M');