Answers for "Fatal error: Allowed memory size of 1610612736 bytes exhausted but already allocated 1.75G"

22

Allowed memory size of 1610612736 bytes exhausted

export COMPOSER_MEMORY_LIMIT=-1
Posted by: Guest on October-29-2020
1

PHP Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 4096 bytes)

php -d memory_limit=-1 /usr/local/bin/composer install
Posted by: Guest on May-04-2021
1

Fatal error: Allowed memory size of 1610612736 bytes exhausted but already allocated 1.75G

In my case with Xampp with Windows 10

i just changed:

;memory_limit=512M 
by commenting this configuration, in php.ini to:

memory_limit =-1
Posted by: Guest on June-17-2021

Code answers related to "Fatal error: Allowed memory size of 1610612736 bytes exhausted but already allocated 1.75G"

Browse Popular Code Answers by Language