You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed It package locally and it is working fine but after uploading the files to the host login and register forms didn't work it keeps resulting the error
419 Page Expired
I have changed the permissions for storage and bootstrap cache but with no luck
and the language links always redirects me to the default language (ar) it didn't work either.
is there any configs missing ? I have set the APP_URL and ASSET_URL in the .env file
The text was updated successfully, but these errors were encountered:
laravel session not persisting
in public/index.php add this on first line
ob_start();
session_start();
<?php
ob_start();
session_start();
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;
define('LARAVEL_START', microtime(true));
...
your host maybe not initialize session driver
go to storage/session delete all files on this folder and test your application again
tell me if you facing same error again
I have installed It package locally and it is working fine but after uploading the files to the host login and register forms didn't work it keeps resulting the error
419 Page Expired
I have changed the permissions for storage and bootstrap cache but with no luck
and the language links always redirects me to the default language (ar) it didn't work either.
is there any configs missing ? I have set the APP_URL and ASSET_URL in the .env file
The text was updated successfully, but these errors were encountered: