-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.php
executable file
·79 lines (66 loc) · 1.45 KB
/
configuration.php
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/**
* @file configuration.php
* @ingroup configurations
* @brief Jeff configuration file.
*
* @author abidibo [email protected]
* @version 0.99
* @date 2011-2012
* @copyright Otto srl [MIT License](http://www.opensource.org/licenses/mit-license.php)
*/
/**
* @defgroup configurations Configuration
*
* ### Configuration of the web application
*
* Includes the configuration of the database parameters, the configuration of some general properties of the web application, like TITLE and DESCRIPTION
* appearing in the head of the document, and the configuration of the date and time formats.
*/
/**
* @brief session name
*/
define('SESSIONNAME', 'JEFF_SID');
/**
* @brief application language (head meta tag)
*/
define('APP_LANGUAGE', 'it_IT');
/**
* @brief Database Management System
*/
define('DBMS', 'mysql');
/**
* @brief Database hostname
*/
define('DB_HOST', 'localhost');
/**
* @brief Database name
*/
define('DB_DBNAME', 'db_jeff');
/**
* @brief Database username
*/
define('DB_USER', 'root');
/**
* @brief Database user password
*/
define('DB_PASSWORD', '');
/**
* @brief Database schema
*/
define('DB_SCHEMA', '');
/**
* @brief Database charset
*/
define('DB_CHARSET', 'utf8');
/**
* @brief System passwords cryptation method
*/
define('PWD_HASH', 'md5'); // md5 | sha1 | "empty"(-> no cryptation)
/**
* @brief Debug mode.
*
* View detailed information when system error occurs
*/
define('DEBUG', true);
?>