0

Nowadays i'm trying to change develop my system so i have been editing my files. But last 2-3 days my site gets more error(500) causing server load. How can i learn that reason of server load?

4

1 回答 1

0

由于某种原因,您已经用完了可分配的 PHP 内存。

PHP Fatal error: Out of memory (allocated 1572864) (tried to allocate 65536 bytes)

要么你对你的代码做了一些非常奇怪的事情,要么你正在做的事情需要更多的内存才能正常运行。

尝试这个:

编辑您的 php.ini 并更改此参数

memory_limit = 128M

您的可能设置为 128Meg 作为默认值,如果尝试将其更改为

memory_limit = 256M
于 2013-07-16T18:51:31.013 回答