0
Locally all forms work, but when I put online is giving erro
as if I didn’t have the _token
attributed to forms
.
APP_NAME=MonkStudio
APP_ENV=production
APP_KEY=base64:KV/4jmhU507Kse+PSbsBJPUwKd1vG2bFsLmN0lDCQoQ=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://monkstudio.net
.
.
.
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
The files are being recorded, how to resolve?
Link: http://monkstudio.net/
APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:xLjupiwxDrKRHrUseKw315QmXxWX64T4lb8WrT+GveA=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://monkstudio.net
– André Cabral
Delete your previous comment, don’t pass your APP_KEY to anyone. Put it like this
APP_URL=http://monkstudio.net
– David Dias
Check out the
SESSION_DRIVER=file
and don’t forget to check the directory permissions.– David Dias
Sessions are being recorded but do not appear in the browser. BROADCAST_DRIVER=log CACHE_DRIVER=file SESSION_DRIVER=file QUEUE_DRIVER=Sync
– André Cabral
Do a test there in config/Session.php setting there session forcibly.
– David Dias
wheel also a
php artisan config:clear
– David Dias
Dude, I ran some commands here, php Artisan key:generate , php Artisan config:cache , php Artisan auth:clear-resets and it worked again. Thank you for your attention
– André Cabral