php错误Fatal error: Out of memory (allocated 262144)...解决方法

发布时间:2019-09-29编辑:脚本学堂
有关php错误Fatal error: Out of memory (allocated 262144) (tried to allocate 19456 bytes错误的解决方法,有遇到此问题的朋友参考下。

php错误:
php错误Fatal error: Out of memory (allocated 262144) (tried to allocate 19456 bytes

解释:
致命错误,超出内存,已分配allocated 262144,尝试分配19456 字节。

解决方法:
修改php.ini,加大memory_limit

html可以正常访问,php不行,我还以为是受攻击呢。

后来看到 上不去了Fatal error: Out of memory (allocated 262144) (tried to allocate 19456 bytes,内存不足导致的,可是vps也连不上去,也看不到到底是谁在占内存,只能进网站后台重启vps,就不知道问题出在哪儿了。

---修改方法

修改php.ini

找到:
 

max_execution_time = 120     ;  Maximum execution time of each script, in seconds
max_input_time = 60 ;  Maximum alinuxjishu/9952.html target=_blank class=infotextkey>mount of time each script may spend parsing request data
memory_limit = 64M      ; Maximum amount of memory a script may consume (64MB)

根据需要调整,然后重启apache服务就可以了。