Maybe this could help:
From: https://stackoverflow.com/questions/1617...4576-bytes
From StackOverflow - kael: Wrote:I see my problem is a little bit different from yours, but I'll post this answer in case it helps someone else. I was using
as shorthand instead ofCode:MB
when defining my memory_limit, and php was silently ignoring it. I changed it to an integer (in bytes) and the problem was solved.Code:M
My php.ini changed as follows:
toCode:memory_limit = 512MB
. This fixed my problem. Hope it helps with someone else's! You can read up on php's shorthand here.Code:memory_limit = 536870912
Good luck!
Edit
As Yaodong points out, you can just as easily use the correct shorthand, "M", instead of using byte values. I changed mine to byte values for debugging purposes and then didn't bother to change it back.
From: https://stackoverflow.com/questions/1617...4576-bytes