[go: up one dir, main page]

Menu

[r2]: / config.php  Maximize  Restore  History

Download this file

30 lines (22 with data), 1.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/** Configurations for Linha do Texto, including database connection
**
** For security reasons following should be done after test phase:
** - Put this file outside public html directory if possible
** - Encrypt passwords
**/
// ----------------------------------------------------------
// Database connection configuration
// Edit following values according to your database:
$hostname = "localhost";
$database = "linhadotexto";
$username = "username"; // replace with your username in the database
$password = "password"; // replace with password's database
$senhacriatabela = "1"; // any password for creating and editing games
// ----------------------------------------------------------
// --- These should be also set:
// contact person in error situations etc.
$webmaster = "email_valido_do_webmaster";
// notice message in the bottom of e-mails that convener generates
$emailfooter = "\n\n\n\n--\nThis is an automatically generated message from Linha do Texto";
?>