I am currently debugging php-script. I set memory_limit to 64M and it confirms this:
ini_set("memory_limit","64M"); echo "starting script with ".ini_get("memory_limit")."Bytes of ram\n"; \\64
But, nevertheless, the script breaks using only 20M, which leads to an error caused by standard memory.
Fatal error: Allowed memory size of 20971520 byte exhausted
Is there a possibility that I probably did not think about? Perhaps Apache is installing something for PHP?
source share