Search code examples
joomla

$mainframe->redirect(‘XXXXXXXXXXXX’); not working in IE


$mainframe->redirect(‘XXXXXXXXXXXX’); 

not working in joomla although I have defined

global $mainframe;

Solution

  • use the code like that

    global $mainframe; 
    $redirect = "xxx.php";
    $mainframe->redirect($redirect); 
    

    or

    global $mainframe; 
    $mainframe->redirect($redirect);