This line in Encoder::append8BitBytes() appears to cause some error which results in a 503 from the server.
$bytes = @iconv('utf-8', $encoding, $content);
replacing it with
$bytes = mb_convert_encoding($content, $encoding, 'UTF-8');
fixes the issue for me.
I see now that this relates to PR #178 .
This line in
Encoder::append8BitBytes()appears to cause some error which results in a 503 from the server.replacing it with
fixes the issue for me.
I see now that this relates to PR #178 .