ok ho una soluzione rapida per voi:
1. aperto e fare una copia di questo file:
forum root / includes / vbenterprisetranslator_functions.php
2. in questo file troverete:
3. pasta PRIMA questo codice:
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. salvare un file.
5. aperto e fare una copia di questo file:
forum root / includes / vbenterprisetranslator_functions.php
6. in questo file troverete:
PHP Code:
function vbet_redirectDoubleLang()
7. in questa funzione trovare:
PHP Code:
exec_header_redirect($url);
8. e sostituire con:
PHP Code:
vbet_vb_exec_header_redirect($url);
9. salvare un file e testarlo.
Già fatto - sarà incluso nella prossima relase.