Redirect After Signup

The recommended method of customizing your AppGini-generated application is through hooks. But sometimes you might need to add functionality not accessible through hooks. You can discuss this here.
Post Reply
bdurfee
Veteran Member
Posts: 32
Joined: 2013-02-07 17:44

Redirect After Signup

Post by bdurfee » 2017-08-14 21:15

I would like to redirect users to a custom page after they sign up. (New signups have to be approved.) I tried editing the member_activity function:

Code: Select all

switch($activity){
	case 'pending':
		// other functions happen before header and they work fine
		header("Location: ../thanks.php");
		break;
How can I change the page a user lands on after signing up?

patsd102
Veteran Member
Posts: 142
Joined: 2013-01-15 19:59

Re: Redirect After Signup

Post by patsd102 » 2017-08-20 08:13

membership_signup.php

Line 70 = redirect("membership_thankyou.php$redirect");

Change = redirect("new url.php$redirect");
23.17

Post Reply