. */ ini_set('session.gc_maxlifetime', 24*60*60); // MIN SESSION ini_set('session.gc_probability', 1); // GC RATES ini_set('session.gc_divisor', 100); // TIMES session_save_path('.tmp'); // TEMP session_start(); // START require_once __DIR__ . '/autoload.php'; // AUTOLOAD $StaticFunctions = new \App\LobbySIO\Misc\StaticFunctions(); // CLASSES $SiteInfo = new \App\LobbySIO\Database\SiteInfo(); $Users = new \App\LobbySIO\Database\Users(); if(!isset($_COOKIE['app_disp_lang'])) { $app_disp_lang = $StaticFunctions->getDefaultLanguage(); } else { $app_disp_lang = $_COOKIE['app_disp_lang']; }; $Translate = new \App\LobbySIO\Language\Translate($app_disp_lang); $transLang = $Translate->userLanguage(); // SETUP TRANSLATOR $app_current_pagename = $transLang['LOGIN']; // PAGE FUNCTION $app_current_pageicon = ' ';// PAGE ICON require_once("inc/header.inc.php"); // SHOW HEADER if ($StaticFunctions->getSessionStatus() == true) { // CHECK STATUS header('Location: index.php'); // ELSE HOME } else { ?> loginUser($_POST['username']); if ($user && $user[0]["users_password"] == $hasher->CheckPassword($_POST['password'], $user[0]["users_password"])): session_regenerate_id(); $_SESSION['user_id'] = $user[0]["users_id"]; $_SESSION['loggedIn'] = TRUE; $_SESSION['signature'] = md5($user[0]["users_id"] . $_SERVER['HTTP_USER_AGENT']); $_SESSION['firstname'] = $user[0]["users_firstname"]; $_SESSION['lastname'] = $user[0]["users_lastname"]; session_write_close(); header("Location: index.php"); endif; endif; ?>
: getSiteInfo($siteid)[0]["sites_name"]; ?>
: getSiteInfo($siteid)[0]["sites_timezone"]; ?>