PHP Warning: PHP Startup: apc.shm_size now uses M/G suffixes, please update your ini files
Solution is pretty simple change in your php.ini
from:
1 | apc.shm_size=512 |
to
1 | apc.shm_size=512M |
You may need to specify “M” for Megabyte (MB) or “G” for Gigabyte(GB) to solve this issue.