PHP: Fatal Error: Allowed Memory Size of XXXXXX Bytes ExhaustedTo solve this, we need to increase the size limit by using the following command:
## XXXM or -1 to set no limit at all.
sed -i 's/memory_limit.*/memory_limit = 512M/g' /etc/php.ini
OR
sed -i 's/memory_limit.*/memory_limit = -1/g' /etc/php.ini