mirror of
https://github.com/YunoHost-Apps/teampass_ynh.git
synced 2024-09-03 20:26:37 +02:00
18 lines
514 B
PHP
18 lines
514 B
PHP
<?php
|
|
global $lang, $txt, $pathTeampas, $urlTeampass, $pwComplexity, $mngPages;
|
|
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']);
|
|
@define('SECUREPATH', '__SKPATH__');
|
|
if (file_exists("__SKPATH__sk.php")) {
|
|
require_once "__SKPATH__sk.php";
|
|
}
|