File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -1398,6 +1398,14 @@ session.save_handler = files
1398
1398
; http://php.net/session.save-path
1399
1399
;session.save_path = "/tmp"
1400
1400
1401
+ ; Whether to use strict session mode.
1402
+ ; Strict session mode does not accept uninitialized session ID and regenerate
1403
+ ; session ID if browser sends uninitialized session ID. Strict mode protects
1404
+ ; applications from session fixation via session adoption vulnerability. It is
1405
+ ; disabled by default for maximum compatibility, but enabling it is encouraged.
1406
+ ; https://wiki.php.net/rfc/strict_sessions
1407
+ session.use_strict_mode = 0
1408
+
1401
1409
; Whether to use cookies.
1402
1410
; http://php.net/session.use-cookies
1403
1411
session.use_cookies = 1
Original file line number Diff line number Diff line change @@ -1398,6 +1398,14 @@ session.save_handler = files
1398
1398
; http://php.net/session.save-path
1399
1399
;session.save_path = "/tmp"
1400
1400
1401
+ ; Whether to use strict session mode.
1402
+ ; Strict session mode does not accept uninitialized session ID and regenerate
1403
+ ; session ID if browser sends uninitialized session ID. Strict mode protects
1404
+ ; applications from session fixation via session adoption vulnerability. It is
1405
+ ; disabled by default for maximum compatibility, but enabling it is encouraged.
1406
+ ; https://wiki.php.net/rfc/strict_sessions
1407
+ session.use_strict_mode = 0
1408
+
1401
1409
; Whether to use cookies.
1402
1410
; http://php.net/session.use-cookies
1403
1411
session.use_cookies = 1
You can’t perform that action at this time.
0 commit comments