Xin vui lòng chỉnh sửa tập tin / Bao gồm / vbenterprisetranslator_functions.php:
1. Tìm:
PHP Code:
if ($vbulletin->options['vbenterprisetranslator_translationlinkstype']) {
$baseUri = $vbulletin->options['bburl'];
$output = vbet_replaceFirst('<head>','<head><base href="'.$baseUri.'/" />',$output);
if (defined('VBSEO_BASEDEPTH') && VBSEO_BASEDEPTH && defined('VBSEO_PREPROCESSED')) {
$output = vbet_replaceFirst('<!--[if IE]></base><![endif]-->','<!--[if IE]></base><![endif]--><base href="'.$baseUri.'/" />',$output);
}
}
2. Thay thế bởi:
PHP Code:
if ($vbulletin->options['vbenterprisetranslator_translationlinkstype']) {
$baseUri = $vbulletin->options['bburl'];
$what = '<base href="'.$baseUri.'/'.$language.'/"';
$toWhat = '<base href="'.$baseUri.'/"';
$position = strpos($output, $what);
if ($position === false) {
$output = vbet_replaceFirst('<head>','<head>'.$toWhat.' />',$output);
} else {
$output = substr_replace($output, $toWhat, $position, strlen($what));
}
}
Điều này sẽ được bao gồm trong phiên bản tiếp theo.
Xin hãy xác nhận đã làm nó giải quyết vấn đề này thời gian (giữ cũng thay đổi mới nhất)