致命错误:允许的内存大小为 134217728 字节已用尽(尝试分配 87 字节)

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 87 bytes)(致命错误:允许的内存大小为 134217728 字节已用尽(尝试分配 87 字节))
本文介绍了致命错误:允许的内存大小为 134217728 字节已用尽(尝试分配 87 字节)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

当我登录到我的 Web 应用程序时,它显示如下错误:

When I login to my web application it shows an error like:

致命错误:/gt/2.ps.fo/home/hft/domains/console.fo.spalgo.com/public_html/cake/libs/中允许的内存大小为 134217728 字节(试图分配 87 字节)模型/数据源/dbo/dbo_mysql.php 在线 775

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 87 bytes) in /gt/2.ps.fo/home/hft/domains/console.fo.spalgo.com/public_html/cake/libs/model/datasources/dbo/dbo_mysql.php on line 775

有没有办法解决这个问题?为什么会出现此错误?

Is there any solution to solve this problem? Why do I get this error?

推荐答案

听起来你已经分配了 比 PHP 允许的内存多.如链接页面所述,编辑站点 php.ini 配置中的 memory_limit 设置.

That sounds like you've allocated more memory than PHP will allow. Edit the memory_limit setting in your site php.ini configuration as described on the linked page.

另一种可能性(不太可能)是您已达到用户或组的 setrlimit(2) 资源限制.检查 /etc/security/limits.conf 以了解可能为您的 Web 服务器设置的限制,以及启动您的服务器环境和 PHP 解释器环境的任何初始化脚本.

Another possibility (less likely) is that you've hit the setrlimit(2) resource limits for your user or group. Check /etc/security/limits.conf for limits that might be set for your web server, along with whatever initialization scripts start your server environment and PHP interpreter environment.

这篇关于致命错误:允许的内存大小为 134217728 字节已用尽(尝试分配 87 字节)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Codeigniter htaccess to remove index.php and www(Codeigniter htaccess 删除 index.php 和 www)
htaccess mod_rewrite part of url to GET variable(htaccess mod_rewrite url 的一部分到 GET 变量)
Replacing a querystring parameter value using mod_rewrite(使用 mod_rewrite 替换查询字符串参数值)
.htaccess in subdirectory #39;overriding#39; parent htaccess(子目录“覆盖父 htaccess 中的 .htaccess)
How to rewrite SEO friendly url#39;s like stackoverflow(如何像stackoverflow一样重写SEO友好的url)
Is it okay to have a very long .htaccess file?(有一个很长的 .htaccess 文件可以吗?)