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
File
vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
Issue On Line Number 66
$this->saveSession($request);
Due this function Session FIle is OverWritten in each and Every Request
This Causes Issues in Real Time System where repeated ajax request is present
This is not good to rewrite session on each and every request i temporary rewrite in vendor
if (!$request->ajax() || $request->saveSession === true) {
$this->saveSession($request);
}
Please Solve As Soon
The text was updated successfully, but these errors were encountered:
Thanks for reporting but it looks like this is a question which can be asked on a support channel. Please only use this issue tracker for reporting bugs with the library itself. If you have a question on how to use functionality provided by this repo you can try one of the following channels:
Description:
Steps To Reproduce:
File
vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
Issue On Line Number 66
$this->saveSession($request);
Due this function Session FIle is OverWritten in each and Every Request
This Causes Issues in Real Time System where repeated ajax request is present
This is not good to rewrite session on each and every request i temporary rewrite in vendor
if (!$request->ajax() || $request->saveSession === true) {
$this->saveSession($request);
}
Please Solve As Soon
The text was updated successfully, but these errors were encountered: