Quote:
Originally Posted by boiboi
I'm not using vbhome. what I have is a regular site not integrated with vb. I'd like my vb to redirect to my homepage after users logout.
|
This should work...
In login.php, find:
Code:
$url = fetch_replaced_session_url($url);
eval(print_standard_error('error_cookieclear'));
}
// ############################### start do login ###############################
if ($_REQUEST['do'] == 'login')
Change the first two lines of it with:
Code:
$url = 'YOUR HOMEPAGE URL GOES HERE';
eval(print_standard_redirect('Logout', false));