Laravel 419,页面已过期

huangapple go评论44阅读模式
英文:

Laravel 419 , page expired

问题

安装了backpack v6后,出现了419 | 页面过期错误,我无法转到任何其他页面,都会出现页面过期错误。我尝试在blank.blade.php中添加以下代码:

<meta name="csrf-token" content="{{ csrf_token() }}">

在创建模型并安装backpack devtools之后。

英文:

After installing backpack v6, getting 419 | page expired error, I can't go to any other page with getting the page expired error, I tried to put the <meta name="csrf-token" content="{{ csrf_token() }}"> on the blank.blade.php

enter image description here

After creating the models and installing backpack devtools

答案1

得分: 1

尝试在.env文件中设置APP_URL

APP_URL=https://example.com

英文:

Try to set APP_URL in .env file.

> APP_URL=https://example.com

答案2

得分: 1

是的,我遇到了同样的问题。

如果您是在本地使用 php artisan serve 进行服务,请在您的 .env 文件中设置:

APP_URL=http://127.0.0.1:8000

参见此 backpack Github 问题的解释

英文:

Yes, I had the same problem.

If you are serving from localhost with php artisan serve, then set in your .env file:

APP_URL=http://127.0.0.1:8000

See this backpack Github issue for an explanation

huangapple
  • 本文由 发表于 2023年7月4日 20:25:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/76612622.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定