Wordpress Extended Live Archive not showing
Recently I come across Debashish Chakrabarty’s site and found interesting Archive page. I downloaded Extended Live Archive plugin and followed all the installation steps. But somehow I cold not get similar page on my Wordpress 2.1 blog!
After digging a lot in Google, I found some discussion at Flickr. After reading all the comments, somehow I could hack the problem by adding one link in af-extended-live-archive.js.php file.
If you are facing similar issue, try your luck by adding following code in \includes\af-extended-live-archive.js.php file…
Old code:
...
} else {
header("Cache-Control: public");
header("Pragma: cache");
...
New code:
...
} else {
header('HTTP/1.1 200 OK');
header("Cache-Control: public");
header("Pragma: cache");
...
Njoy…
Hardik

Posted by Hardik