PDA

View Full Version : Best way to skip registration_complete and redirect elsewhere?


N8
01-04-2012, 08:24 AM
I'm looking to skip the $vbphrase[registration_complete] message after registration, and have the user directly sent to payments.php after hitting submit on register.php


What I've been doing for years is just placing a Javascript redirect in the registration_complete phrase, however I'm looking for a more seamless way of doing this.


Would this be the best way to do this? Inside of
if ($_POST['do'] == 'addmember')






Add header( 'Location: payments.php' ) ; Before


eval(standard_error(fetch_error('registration_comp lete', $username, $vbulletin->session->vars['sessionurl'], $vbulletin->options['bburl'] . '/' . $vbulletin->options['forumhome'] . '.php'), '', false));
}





This clearly does rdirect when I want it to, I'm just curious if it's stopping something else that's going on in the background from happening later in the script - or is this an ok way to go about it?

HMBeaty
01-04-2012, 08:35 AM
Assuming you're running 3.8.7, try this... in register.php, find (around line 562):
exec_header_redirect($vbulletin->options['forumhome'] . '.php');
And replace with this:
exec_header_redirect('payments.php');
** This has not been tested **