Reputation: 31
After clicking verify email address button in the email, I got 403 invalid signature. I'm using shared hosting
I have read these
but still can't solve my problem
Upvotes: 3
Views: 4433
Reputation: 29
Maybe the verification link is already expired.
Referring to UrlGenerator.php,
public function hasValidSignature(Request $request, $absolute = true)
{
return $this->hasCorrectSignature($request, $absolute)
&& $this->signatureHasNotExpired($request);
}
Upvotes: 0
Reputation: 21
Same happen to me, but only in production while using FORCE_HTTPS
to set all my routes to https
,
if I disable Force_https
it works, but my routes go back to https
.
Upvotes: 2