0

I followed Laravels docs (link) about Email verification. Everything seems to work except for a 403 - invalid signature. This errors shows when clicking on the email link. I'm using shared hosting.

Url is similar to this:

[..]email/verify/21?expires=154270[..]&signature=920dcb9ac2fbf5[..]

would appreciate all the help I could get! Thanks!

Tobias
  • 13
  • 1
  • 6

1 Answers1

-1

Here is the answer: https://stackoverflow.com/a/44839664

You have to generate a key: php artisan key:generate

  • **Never ever** do that. This first step is made as soon as the app is created and if you run it again no one would be able to login or your encrypted images would be encrypted **forever**. – Alessandro Belli Apr 27 '20 at 08:48
  • In my case it was so that I wanted to deliver my software and there was no key on the server. You're right, it's not a good idea to do that with the environment up and running. – Merlin Roth Apr 28 '20 at 09:42