
01-29-2011, 09:12 AM
|
|
|
Join Date: Dec 2005
Location: Brazil
Posts: 81
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by el_capiton
hi
i've read the thread and i'm using KW802 xml file and i get that issue.
also did anyone get problems with moderators that can't access moderator zone. it keeps loading the login page
|
I posted the solution 2 pages behind:
Quote:
Originally Posted by andrefedalto
For the ones that are having problems to login on AdminCP/ModCP, follow this:
Go to AdminCP > Plugins & Products > Plugin Manager > Edit plugin "Domains Login" from Cerberus. Replace the original code:
PHP Code:
$vb_cerberus_login = vb_cerberus_iframe("login");
$templater = vB_Template::create('STANDARD_REDIRECT');
$vbulletin->templatecache['STANDARD_REDIRECT'] = str_replace('<div class="standard_error">
', $vb_cerberus_login . '<div class="standard_error">
',
$vbulletin->templatecache['STANDARD_REDIRECT']);
for this:
PHP Code:
if ($vbulletin->GPC['logintype'] != 'cplogin' && $vbulletin->GPC['logintype'] != 'modcplogin')
{
$vb_cerberus_login = vb_cerberus_iframe("login");
$templater = vB_Template::create('STANDARD_REDIRECT');
$vbulletin->templatecache['STANDARD_REDIRECT'] = str_replace('<div class="standard_error">
', $vb_cerberus_login . '<div class="standard_error">
',
$vbulletin->templatecache['STANDARD_REDIRECT']);
}
This fix the problem with login to panels. Be aware that you need to clear your cookies to get this working also.
|
|