Skip to content

Commit fb589a7

Browse files
committed
Fix session timeout issues on browser close.
1 parent 7f51e5d commit fb589a7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
1414
### Fixed
1515
* Bug causing error logs to be spammed if someone timed out on an ajax based page.
1616
* Fixes edge case where specific server names could cause daemon errors due to an invalid SFTP username being created by the panel.
17+
* Fixes sessions being removed on browser close, and set sessions to idle for up to 3 hours before being marked as expired.
1718

1819
### Changed
1920
* Admin API and base routes for user management now define the fields that should be passed to repositories rather than passing all fields.

config/session.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
|
3030
*/
3131

32-
'lifetime' => 30,
32+
'lifetime' => 120,
3333

34-
'expire_on_close' => true,
34+
'expire_on_close' => false,
3535

3636
/*
3737
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)