mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
9 lines
223 B
PHP
9 lines
223 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
|
|
|
|
session_start();
|
|
session_write_close();
|