When logged in, the last loggedin time is stored in the edit_user table, additional to the normal logging. More array() to [] conversion in config files, etc Javascript: add math.round Basic Class: Fix key length array mapping to more efficiont loop run DB/IO: some name fixes in get key function description/comments SmartyExtended: add CORE CSS/JS file include if exists. Follows after MAIN and BEFORE page and special
26 lines
677 B
PHP
Executable File
26 lines
677 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
/********************************************************************
|
|
* AUTHOR: Clemens Schwaighofer
|
|
* CREATED: 2018/10/11
|
|
* SHORT DESCRIPTION:
|
|
* configuration file for database settings
|
|
* HISTORY:
|
|
*********************************************************************/
|
|
|
|
// please be VERY carefull only to change the right side
|
|
$DB_CONFIG = [
|
|
'test' => [
|
|
'db_name' => 'gullevek',
|
|
'db_user' => 'gullevek',
|
|
'db_pass' => 'gullevek',
|
|
'db_host' => 'db.tokyo.tequila.jp',
|
|
'db_port' => 5432,
|
|
'db_schema' => 'public',
|
|
'db_type' => 'pgsql',
|
|
'db_encoding' => '',
|
|
'db_ssl' => 'disable' // allow, disable, require, prefer
|
|
]
|
|
];
|
|
|
|
// __END__
|