I fetch serious problem in token mismatch frequently. I followed many instruction from "LaraCast" and "Stack Overflow" but i did't get redemption from it.
Recently I have followed this discussion about Laracast which url is https://laracasts.com/discuss/channels/laravel/512-logging-in-with-remember-me-causes-tokenmismatchexception-on-form-submit?page=1 and found some result and those are given below
I debug in this way:
var_dump($request->input('_token'));
var_dump($request->header('X-CSRF-TOKEN'));
dd($request->session());
Without Mismatch Exception:
string(40) "FiCvlJJOfdG7F3BNS9jnBn5y67tr4sBoQ7BCJzRU"
NULL
Store {#245 ▼
#id: "004080342b35e0ae6d5c203d2abe92fdb6a07bf8" #name: "inzaana_session" #attributes: array:4 [▼ "_token" => "FiCvlJJOfdG7F3BNS9jnBn5y67tr4sBoQ7BCJzRU" "_previous" => array:1 [▼ "url" => "http://localhost:8000/super-admin/create-plan" ] "flash" => array:2 [▼ "old" => [] "new" => [] ] "login_web_59ba36addc2b2f9401580f014c7f58ea4e30989d" => 1 ] #bags: [] #metaBag: MetadataBag {#236 ▶} #bagData: array:1 [▼ "_sf2_meta" => &1 array:3 [▼ "u" => 1480790005 "c" => 1480786831 "l" => "0" ] ] #handler: FileSessionHandler {#246 ▶} #started: true
}
With Mismatch Exception:
string(40) "Rk7ECUWFBmrrkTITaAeNzeWD0huFxEQ74JGJskR9"
NULL
Store {#245 ▼
#id: "a62fabfbd6f316808607774bd23ac63b107efb0f" #name: "inzaana_session" #attributes: array:1 [▼ "_token" => "lde8VED0Dssy4oZnyN53yDs5BE1FdOuS6EFjevKk" ] #bags: [] #metaBag: MetadataBag {#238 ▼ -name: "__metadata" -storageKey: "_sf2_meta" #meta: &1 array:3 [▶] -lastUsed: 1480790325 -updateThreshold: 0 } #bagData: array:1 [▼ "_sf2_meta" => &1 array:3 [▼ "u" => 1480790325 "c" => 1480790325 "l" => "0" ] ] #handler: FileSessionHandler {#246 ▼ #files: Filesystem {#99} #path: "D:\laragon\www\inzaana_core\inzaana_cms\storage\framework/sessions" #minutes: 120 } #started: true
}
When Mismatch exception occur #attributes array contains only 1 element instead of 4. Cordially I am looking forward to hearing from you.
Note: I have set Session lifetime=>120
Thanks in advance.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community