Well, I may not know PHP, but I was able to figure it out by using the echo command to see what was happening. The problem was the extremely long (151 chars) login response being returned by our news server. The fix is to edit line 75 in the nntp.php file:
$response = fgets($fp, 128);
and change the number to 256. After this change all the threads were downloaded.
|