php报错FastCGI sent in stderr “PHP Fatal error: Allowed memory size of”错
发布:smiling 来源: PHP粉丝网 添加日期:2018-10-24 13:33:48 浏览: 评论:0
PHP的memory_limit值的默认配置是128M,但是根据处理内容有时候会发生如下错误。
FastCGI sent in stderr: “PHP message: PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 39858177 bytes)
可以通过修改memory_limit值来,回避以上错误的出现。
修改memory_limit值。
- # vi /etc/php.ini
- ;memory_limit = 128M
- memory_limit = 256M
修改php.ini文件之后,重启Apache或者Nginx。
# /etc/init.d/httpd restart # 重启Apache
# /etc/init.d/nginx restart # 重启Nginx
memory_limit = -1为,无限制。
/etc/php.ini里的默认配置如下。
- ; Maximum amount of memory a script may consume (128MB)
- ; http://www.php.net/manual/en/ini.core.php#ini.memory-limit
- memory_limit = 128M
一个线程的最大内存使用量,即一个Web请求可使用的PHP内存量。
Tags: FastCGI Fatal error: Allowed memory
相关文章
- ·FastCGI 不完全高级指南(PHP版,Windows平台)(2013-11-28)
- ·使用fastcgi_finish_request实现后台异步处理及提高页面响应速度(2015-04-15)
- ·FastCGI在PHP与Nginx之间的作用介绍(2020-01-16)
- ·浅谈cgi、fastcgi及php-fpm的原理概念(2020-03-31)
- ·在PHP中使用FastCGI解析漏洞及修复方案(2021-06-26)
- ·PHP7内核CGI与FastCGI详解(2021-11-17)
- ·解决Fatal error: Maximum function nesting level of ’100′ reached报错(2014-10-22)
- ·laravel 5异常错误:FatalErrorException in Handler.php line 38的解决(2018-09-09)
- ·PHP 报错 Fatal error: Class COM not found in(2018-10-23)
- ·PHP程序时出现 Fatal error: Maximum execution time of 30 seconds exceeded in(2018-10-24)
- ·PHP捕获Fatal error错误的方法(2021-02-11)
- ·CodeIgniter框架提示Disallowed Key Characters的解决办法(2020-11-19)
- ·curl out of memory window下PHP调用curl报内存不够(2013-12-06)
- ·PHP中修改memory_limit限制多种方法(2014-01-16)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)