PHP message: PHP Fatal error: Allowed memory size of 134217728 bytes exhausted 错误

php运行一段时间后,部分页面打不开,查看nginx日志里面一直在报PHP message: PHP Fatal error:  Allowed memory size of 134217728 bytes exhausted 错误

解决办法:

修改配置文件php.ini文件

把 memory_limit = 128M

改成

memory_limit = 512M

重启php-fpm

/etc/init.d/php-fpm  restart

原文地址:https://www.cnblogs.com/heruiguo/p/11738423.html