mirror of
https://github.com/itflow-org/itflow
synced 2026-08-05 15:17:17 +00:00
11 lines
298 B
PHP
11 lines
298 B
PHP
<?php
|
|
|
|
// Keep PHP sessions alive
|
|
// Receives requests via AJAX in the background every 8 mins to prevent PHP garbage collection ending sessions
|
|
// See footer.php & js/keepalive.js
|
|
|
|
require_once __DIR__ . "/config.php";
|
|
|
|
require_once __DIR__ . "/includes/session_init.php";
|
|
session_write_close();
|