PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 11368864 bytes) in Unknown on line 0 Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 11368864 bytes) in Unknown on line 0
今天打开phpmyadmin
的时候,页面提示:
PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 11368864 bytes) in Unknown on line 0 Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 11368864 bytes) in Unknown on line 0
显示内存不足,解决方案:
查看php.ini
配置文件,修改大小,就ok了。如下:
查到这儿,memory_limit = 128M
;
修改其值,如512
或1024
,看你自己想分配多大的内存了。
备注:
如果你修改后,屡次打开还是出现这个错误,memory_limit
你已经赋予很多内存给它还是这样的情况下,建议你换下其他浏览器,我就是被坑在这里几小时。