-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.sample.php
37 lines (30 loc) · 992 Bytes
/
config.sample.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
<?php
/**
* Configuration for Emotion Diary.
*
* You need to copy this file to `config.php` to make it work.
*
* This file contains the following configrations:
*
* - MySQL settings.
*
* Reference:
* - https://github.com/WordPress/WordPress/blob/master/wp-config-sample.php
*/
//** MySQL settings. **//
/** The database username. */
define('EMOTION_DIARY_DB_USERNAME', 'database_username_here');
/** The database password. */
define('EMOTION_DIARY_DB_PASSWORD', 'database_password_here');
/** The database name. */
define('EMOTION_DIARY_DB_NAME', 'database_name_here');
/** The database hostname. */
define('EMOTION_DIARY_DB_HOSTNAME', 'localhost');
//** Debug settings. **//
/** Whether server should report errors. */
define('EMOTION_DIARY_REPORT_ERRORS', false);
//** Version settings. **//
/** Min supported client version. */
define('EMOTION_DIARY_MIN_VERSION', 1.0);
//** Time zone settings. **//
date_default_timezone_set('PRC'); // PRC为“中华人民共和国”