A user is getting an expiring soon email, which contains a renew link. When the user clicks it, they get a 404. I traced the issue to this line of code:
//If not registered, go to the registration page for that plan
if (!variable_get('ms_membership_skip_registration', FALSE) AND !$user->uid) {
drupal_goto('user/register/membership/'. rawurlencode($m_plan->name));
}
The user is not logged in when they get the email, and I don't have the skip flag set, so they hit this code. I assume MS should be placing a page there, but I cannot find any references to this path in the code. I am not sure if I am overlooking something or if this is a bug.
Thanks for your help.
John








The members are getting the expiring soon email of there account. The link with in the email takes them to a 404 error page.