ok mul on kiirparandus teile:
1. avatud ja teha selle toimiku koopia:
forum root / includes / vbenterprisetranslator_functions.php
2. selle faili leida:
3. pasta enne seda koodi:
PHP Code:
function vbet_vb_exec_header_redirect($url)
{
global $vbulletin;
$url = create_full_url($url);
$url = str_replace('&', '&', $url); // prevent possible oddity
if (strpos($url, "\r\n") !== false)
{
trigger_error("Header may not contain more than a single header, new line detected.", E_USER_ERROR);
}
header("Location: $url", 0, 301);
if ($vbulletin->options['addheaders'] AND (SAPI_NAME == 'cgi' OR SAPI_NAME == 'cgi-fcgi'))
{
header('Status: 301 Moved Permanently');
}
define('NOPMPOPUP', 1);
if (defined('NOSHUTDOWNFUNC'))
{
exec_shut_down();
}
exit;
}
4. salvestada faili.
5. avatud ja teha selle toimiku koopia:
forum root / includes / vbenterprisetranslator_functions.php
6. selle faili leida:
PHP Code:
function vbet_redirectDoubleLang()
7. selles funktsioonis leida:
PHP Code:
exec_header_redirect($url);
8. ja asenda:
PHP Code:
vbet_vb_exec_header_redirect($url);
9. Faili salvestamiseks ja seda testida.
Juba teinud - lisatakse järgmine VIIMINE.