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";
|
2022-07-03 14:58:24 +02:00
|
|
|
$user = "__DB_USER__";
|
2021-07-11 12:41:51 +02:00
|
|
|
$pass = "__DB_PWD__";
|
2021-07-11 16:53:01 +02:00
|
|
|
$database = "__DB_NAME__";
|
2015-12-06 12:49:32 +01:00
|
|
|
$pre = "teampass_";
|
|
|
|
$port = 3306;
|
|
|
|
$encoding = "utf8";
|
|
|
|
|
|
|
|
@date_default_timezone_set($_SESSION['settings']['timezone']);
|
2022-07-04 21:15:54 +02:00
|
|
|
@define('SECUREPATH', '/etc/__APP__/');
|
|
|
|
if (file_exists("/etc/__APP__/sk.php")) {
|
|
|
|
require_once "/etc/__APP__/sk.php";
|
2018-11-21 16:19:57 +01:00
|
|
|
}
|