1

(7 replies, posted in PunBB 1.2 troubleshooting)

It has to do with Akismet's servers and the HTTP/1.1 protocol. You can read more about the fix here. Basically open up the includes/Akismet.class.php and change:

$http_request  = "POST " . $path . " HTTP/1.1\r\n";

to

$http_request  = "POST " . $path . " HTTP/1.0\r\n";