@Marius,
8.02 has overwritten the file.
On line 344:
$fp = fsockopen($host, $port);
Replace with:
$fp = fsockopen($host, $port, $errno, $errstr, $timeout = 30);
And let us know what error this may show....
Otherwise it is possible to hide the error again with
$fp = @fsockopen($host, $port);
This last line hides the problem but is not solving the issue.