diff options
| author | winter Sparkles | 2026-08-09 02:26:33 +0100 |
|---|---|---|
| committer | winter Sparkles | 2026-08-09 02:26:33 +0100 |
| commit | 3354d45762bbe0db33e3d26d8997e6f6624f24d7 (patch) | |
| tree | 4bef4bf59488f443ed54ff6e30002268836ac259 /webroot/index.php | |
| parent | 4bb659e1f7bb5850db5695a536428a9b71e3ffe5 (diff) | |
implement sessions and also log in/out
session data is stored in sqlite, not using php sessions
Diffstat (limited to 'webroot/index.php')
| -rw-r--r-- | webroot/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webroot/index.php b/webroot/index.php index dd8a6d9..eda73c2 100644 --- a/webroot/index.php +++ b/webroot/index.php @@ -18,6 +18,8 @@ $path = explode('?', $path, 2)[0]; $config = parse_ini_file(__DIR__ . '/../config.ini', true, INI_SCANNER_TYPED); +Psso\Session::setDsn($config, 'sqlite:' . __DIR__ . '/../data/sessions.sqlite'); + require_once __DIR__ . '/../localisation.php'; Psso\XMLResponse::addStylesheet('../templates/index.xsl'); |
