英文:
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
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
英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论