After moving over my之后,移动超过我的 test blog测试博客 to the new server, I noticed that the Admin Dashboard (with tons of unnecessary feeds) wasn’t displaying.到新的服务器,我发觉管理控制台(吨不必要的饲料)没有显示。 It shows just a blank page.它表明,只是一个空白页。

Apache error log had a very interesting message: Apache的错误日志中有一个很有趣的讯息:
Allowed memory size of 8388608 bytes exhausted (tried to allocate 0 bytes) 让记忆体的大小8388608字节用尽(试图分配0字节)

The solution is simple.解决办法很简单。
1. 1 。 Increase memory_limit in php.ini to a higher value.增加memory_limit在php.ini中,以更高的价值。 I have set it to 64MB:我已经将它设置为64 MB的:
memory_limit = 64M memory_limit = 64米

2. 2 。 Restart the Apache HTTP Server.重新启动Apache HTTP服务器。 On linux that would be:在Linux上那将是:
service httpd restart 服务的httpd重新启动

Note: The same technique can be used to increase maximum allocated memory for any php scripts.注:同一技术,可以用来增加,最高可分配内存为任何PHP脚本。

An even better solution is to replace it with一个更美好的解决办法是要取代它的 WordPress Dashboard hack在WordPress仪表板哈克 .