Skip to content

Files

Latest commit

 

History

History
17 lines (12 loc) · 549 Bytes

fingerprint.md

File metadata and controls

17 lines (12 loc) · 549 Bytes

Fingerprint

This feature is to prevent users from being logged out. Add this code in your config.php but change the returned string to anything you want.

s::$fingerprint = function() {
  return 'some fingerprint';
};

In scenarios, where IP or user agent based session fingerprints won't work, you can avoid problems that way.

Sources