Fatal error: allowable memory size of 134217728 bytes has been exhausted (tried to allocate 71 bytes)

Possible duplicate: The
allowed memory size of 33554432 bytes has been exhausted (tried to allocate 43148176 bytes) in php

Hi,

On my php page, I got the following error:

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 71 bytes) 

I tried to set a memory limit with ini_set('memory_limit', '128M');

But still I got an error.

Any help would be really appreciated.

+3
source share
1 answer

128 megabytes - 134,217,728 bytes. You used this memory. You either need to set a limit higher (if you can, I don't know if PHP will allow this), or just use less memory in your code.

, ? , , ( -1, ) - . , , . "dummy" , .

+17

Source: https://habr.com/ru/post/1763944/


All Articles