Nickolas
Member
Sorry for my english.
Well.. There is a encoding problem. The picture can explain better than me.
I temporarily fix this on XenForo/Application.php

Well.. There is a encoding problem. The picture can explain better than me.
I temporarily fix this on XenForo/Application.php
Code:
public static function gzipContentIfSupported(&$content)
{
return array();
if (!function_exists('gzencode') || empty($_SERVER['HTTP_ACCEPT_ENCODING']))
{
return array();
}
$headers = array();
if (strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== false)
{
$headers[] = array('Content-Encoding', 'gzip', true);
$headers[] = array('Vary', 'Accept-Encoding', false);
$content = gzencode($content, 1);
}
return $headers;
}
