09-28-2016, 03:50 PM
This should be the fix for forgot_password.php. Try it, and let me know, there may be other fixes if this resolves your issue.
Change line 49 from:
'email' => $email,
To:
'email' => rawurlencode($email),
Change line 55 from:
$email_sent=email($encoded_email,$subject,$body);
To:
$email_sent=email($email,$subject,$body);
the function rawurlencode() was applied in the wrong place.
Change line 49 from:
'email' => $email,
To:
'email' => rawurlencode($email),
Change line 55 from:
$email_sent=email($encoded_email,$subject,$body);
To:
$email_sent=email($email,$subject,$body);
the function rawurlencode() was applied in the wrong place.