Daily Archives: July 21, 2008

godaddy空间经常性的500 Internal Server Error

搜索了一下找到问题的根源。21andy这位仁兄有记载 今天开始,Godaddy被我列入美国空间黑名单. Godaddy连用个wordpress都不行,这也能算合格的空间商?! 刚买了一个GoDaddy空间, 才刚开始使用, 就老是出现 500 Internal Server Error. 气得我半死,堵得慌 看到有老外说是WordPress的wp-cache插件出的问题, 原因在header的Last-Modified 解决办法如下: 1. 打开 wp-content/plugins/wp-cache/wp-cache-phase1.php 2. 找到下面这段代码: foreach ($meta->headers as $header) { header($header); } 替换成 foreach ($meta->headers as $header) { if ( false !== strpos($header, 'Last-Modified:') ) continue; … Continue reading

Posted in VPS & Hosting | Tagged , | 2 Comments