From 73aac7f1e8b146434362602a88bad91529fe58fa Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Thu, 1 May 2008 11:20:05 +0000 Subject: [PATCH] workaround found on http://blog.defv.be/2008/2/22/akismet-problems to prevent timeouts! --- fp-plugins/akismet/inc/Akismet.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fp-plugins/akismet/inc/Akismet.class.php b/fp-plugins/akismet/inc/Akismet.class.php index 5ba2d78..a749054 100755 --- a/fp-plugins/akismet/inc/Akismet.class.php +++ b/fp-plugins/akismet/inc/Akismet.class.php @@ -112,7 +112,7 @@ class Akismet { function http_post($request, $host, $path) { $http_request = - "POST " . $path . " HTTP/1.1\r\n" . + "POST " . $path . " HTTP/1.0\r\n" . "Host: " . $host . "\r\n" . "Content-Type: application/x-www-form-urlencoded; charset=utf-8\r\n" . "Content-Length: " . strlen($request) . "\r\n" .