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.