33 lines
881 B
PHP
33 lines
881 B
PHP
<?php
|
|
// Start the website session
|
|
session_name("opengamepanel_web");
|
|
session_start();
|
|
|
|
// Logger function
|
|
function logger($logtext){
|
|
file_put_contents(__DIR__ . "/logfile.txt", $logtext . PHP_EOL, FILE_APPEND);
|
|
}
|
|
|
|
// Log the logout
|
|
if (isset($_SESSION['website_username'])) {
|
|
logger("Website logout: " . $_SESSION['website_username']);
|
|
}
|
|
|
|
// Destroy all session data
|
|
$_SESSION = array();
|
|
|
|
// Destroy the session cookie
|
|
if (isset($_COOKIE[session_name()])) {
|
|
setcookie(session_name(), '', time() - 42000, '/');
|
|
}
|
|
|
|
// Destroy the session
|
|
session_destroy();
|
|
// Redirect always to the website index page (ignore return_to)
|
|
$script = $_SERVER['SCRIPT_NAME'] ?? '';
|
|
$pos = strpos($script, '/_website');
|
|
$siteRoot = $pos !== false ? substr($script, 0, $pos + strlen('/_website')) : rtrim(dirname($script), '/\\');
|
|
header('Location: ' . $siteRoot . '/index.php');
|
|
exit();
|
|
?>
|
|
|