我执行命令
php artisan auth
我做了一些改进,例如:
1) Added username field in registration
2) Login using email or username
3) Added a "Show Password" checkbox in registration
我正在观看的有关登录,注册和忘记密码的视频,而不是他使用邮筒将其更改为登录。
.env
MAIL_DRIVER=log // from smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
它将在我的存储中创建一个新文件,但是当我粘贴链接时
http://localhost/password/reset/79c928010990374851c949776d95a86a248364df3625c643baaf13f81787b694
它给我一个错误“找不到对象!”。
问题:如何解决此错误?
答案 0 :(得分:1)
感谢@Rajender Verma,我意识到,它不是localhost / password / reset / token,而是127.0.0.1:8000/password/reset/token
答案 1 :(得分:0)
如果通过~nearPoints.astype(bool)
命令运行脚本,则重置密码中的URL将存在localhost,如果在参数中未指定端口,则必须将其替换为php artisan serve
。如果您使用127.0.0.1:8000
运行命令,请替换--port="The port you rant to run on"
端口并享受它。
答案 2 :(得分:0)
复制重置密码链接。将localhost
替换为127.0.0.1:8000
,并将其粘贴到URL栏中。