I changed:
PHP Code:
$vbulletin->url = 'showthread.php?t=2' . $vbulletin->session->vars['sessionurl'];
eval(print_standard_redirect('This is my message', false, true));
to
PHP Code:
$vbulletin->url = $vbulletin->session->vars['sessionurl']."showthread.php?t=2";
eval(print_standard_redirect('This is my message', false, true));
It still did not work, it takes ages redirecting and then I just get can IE error page: Internet explorer cannot display the page.
However the URL is correct:
http://localhost/testvb/showthread.php?t=2
When I refresh the page manually the page appears.