Post request in Laravel - Error - 419 Sorry, your session/ 419 your page has expired
1- اگر سی اس آر اف CSRF توکن رو در فرم داشته باشید، ممکن است مشکل از سشن شما باشه.
2- سشن درایورتون رو برسی کنید.
3- ممکن هست که باید https رو در آدرس صفحه اضافه کنید یا بردارید.
It could be a problem with your session. After playing around with these settings I resolved my problem. For me it turned out to be the last option.
If you are using "file" as session driver look into storage/framework/sessions if the sessions are getting saved after a refresh. If not It is most likely due to incorrect folder permissions. Check that your storage/ folder have the correct right
Try to disable all the Javascript in your pages (either by disabling it via navigator or inside the code) and make sure that 'http_only' => true,
Try to use with and without https
Make sure the SESSION_DRIVER variable is NOT null
Try to switch between 'encrypt' => false, and 'encrypt' => true,
Try to change the cookie name 'cookie' => 'laravelsession',
Try either to set your SESSION_DOMAIN to your actual domain OR null
Try to switch between 'secure' => env('SESSION_SECURE_COOKIE', false), and 'secure' => env('SESSION_SECURE_COOKIE', true),
کلیدواژه: خطای ۴۱۹
زمان بارگذاری: 4 months ago