mirror of
https://github.com/Mibew/java.git
synced 2025-05-06 18:43:08 +03:00
28 lines
553 B
PHP
28 lines
553 B
PHP
<?php
|
|
|
|
/**
|
|
* Database parameters
|
|
*
|
|
* WARNING: Do not use the same values as in the mibew config file!
|
|
* Tests may truncate databses they use and all data will be lost!
|
|
*
|
|
* Use at least default $tables prefix
|
|
*/
|
|
$db_host = "";
|
|
$db_user = "";
|
|
$db_pass = "";
|
|
$db_name = "";
|
|
$tables_prefix = "";
|
|
|
|
$db_encoding = "utf8";
|
|
$force_charset_in_connection = true;
|
|
$use_persistent_connection = false;
|
|
|
|
|
|
/*
|
|
* Locales
|
|
*/
|
|
$home_locale = "en"; /* native name will be used in this locale */
|
|
$default_locale = "en"; /* if user does not provide known lang */
|
|
|
|
?>
|