Home>
I implement email authentication with laravel.
I asked a question without password reset.
I understand that the URL is different, but I don't know the cause.
① You can send a password reset email.
② Mail is sent to the mail trap.
③ Access is not possible even if the password reset button is pressed.
(You cannot access this site. Your connection has been reset.)
Check URL
In case of ①
http://192.168.33.10:8000/password/reset
In case of ③
http: // localhost/password/reset/{token}/Email address
・ Change URL
In case of ③, it was accessible if changed as follows.
Something is wrong.
localhost->192.168.33.10:8000
-
Answer # 1
-
Answer # 2
.env
APP_URL = http: //192.168.33.10: 8000
Terminal
php artisan config: cache
Related articles
- Examples explain Laravel reset password code refactoring
- laravel 5 - i want to use the laravel password reset mail function even with multi-authentication
- Laravel implements password reset
- windows 7 - windows7 password reset
- How to reset mysql root password under windows
- Detailed user password reset using Django's built-in authentication view
- iOS password reset after 1 hour in background
- Two ways to reset mysql database root password with lnmp
- Detailed implementation and steps of root password reset in Centos
- Tutorial to reset MySQL root password under CentOS
- How to reset MySQL password after forgetting it under Mac operating system
- How to reset the root password under Mysql in Windows
- Reset mysql root password in Linux system
- One-click reset script for mysql root password
- One-click reset mysql root password script
- How to reset the root password of RHEL7/CentOS7 system
- MySQL reset root password prompt "Unknown column‘ password '"solution
- What if I forgot my MySQL password? MySQL reset root password method
- Explain how to reset MySQL root password under Linux (CentOS)
- How to reset the root password of MySQL or MariaDB in Linux
Trends
There was an example similar to a past question.
StackOverflow