2017-03-25 18:31:20 +01:00
|
|
|
<?php
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
/*
|
|
|
|
Uncomment the line with MTT_DB_TYPE if you make clean install only.
|
|
|
|
Leave it commented (with # at start) if you are upgrading from version before 1.7.
|
|
|
|
Select the database type: sqlite or mysql.
|
|
|
|
*/
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
define("MTT_DB_TYPE", "mysql");
|
2022-04-08 17:30:08 +02:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
define("MTT_DB_HOST", "localhost");
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
define("MTT_DB_NAME", "__DB_NAME__");
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
define("MTT_DB_USER", "__DB_USER__");
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
define("MTT_DB_PASSWORD", "__DB_PWD__");
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
define("MTT_DB_PREFIX", "");
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
// set mysqli if needed
|
|
|
|
define("MTT_DB_DRIVER", "mysqli");
|
2020-12-31 23:19:32 +01:00
|
|
|
|
2022-11-30 19:23:51 +01:00
|
|
|
define("MTT_SALT", "__SALT__");
|