mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-02-14 09:11:34 +01:00
33 lines
951 B
PHP
Executable File
33 lines
951 B
PHP
Executable File
<?php
|
|
require_once "lib/dbwrapper.php";
|
|
|
|
$db_file = __DIR__."/sqlite.db3";
|
|
if (!is_file($db_file)){ //Go to install if not.
|
|
header("Location: install.php");
|
|
die();
|
|
}
|
|
|
|
$db_conn = dbw_connect("sqlite",$db_file); //Database
|
|
|
|
/** In connect.php check if user SessionID exists, if not, delete Cookie */
|
|
if (isset($_COOKIE['SessionID'])){
|
|
$data = dbw_query_fetch_array($db_conn, "SELECT * FROM USERS WHERE SessionID='$_COOKIE[SessionID]'");
|
|
if (!isset($data['SessionID'])){
|
|
setcookie("SessionID", "", time()-3600,"/");
|
|
header("Location: index.php");
|
|
}
|
|
|
|
$you['ID_U'] = $data['ID_U'];
|
|
$you['nick'] = $data['nick'];
|
|
$you['fullRights'] = $data['fullRights'];
|
|
$you['SessionID'] = $data['SessionID'];
|
|
$you['webRoot'] = webRoot();
|
|
|
|
}
|
|
|
|
$lang=getSystemOpt($db_conn,'lang');
|
|
//Translations
|
|
require_once __DIR__."/assets/translations/en.php"; //Ever first English, and then your lang (Database)
|
|
require_once __DIR__."/assets/translations/$lang.php";
|
|
|
|
?>
|