2015-12-06 12:49:32 +01:00
|
|
|
<?php
|
2018-05-22 20:01:55 +02:00
|
|
|
global $lang, $txt, $pathTeampas, $urlTeampass, $pwComplexity, $mngPages;
|
2015-12-06 12:49:32 +01:00
|
|
|
global $server, $user, $pass, $database, $pre, $db, $port, $encoding;
|
|
|
|
|
|
|
|
### DATABASE connexion parameters ###
|
|
|
|
$server = "localhost";
|
|
|
|
$user = "__DBUSER__";
|
|
|
|
$pass = "__DBPWD__";
|
|
|
|
$database = "__DBUSER__";
|
|
|
|
$pre = "teampass_";
|
|
|
|
$port = 3306;
|
|
|
|
$encoding = "utf8";
|
|
|
|
|
|
|
|
@date_default_timezone_set($_SESSION['settings']['timezone']);
|
2016-12-14 16:02:43 +01:00
|
|
|
@define('SECUREPATH', '__FINALPATH__/includes');
|
2015-12-06 12:49:32 +01:00
|
|
|
require_once "__SKPATH__sk.php";
|
2016-12-14 16:02:43 +01:00
|
|
|
?>
|