-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-sample.php
More file actions
50 lines (30 loc) · 974 Bytes
/
Copy pathconfig-sample.php
File metadata and controls
50 lines (30 loc) · 974 Bytes
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
<?php
// ** PHP settings ** //
/*
Timezone
List of supported timezones: http://php.net/manual/en/timezones.php
*/
date_default_timezone_set('Europe/Oslo');
/*
Error reporting
List of supported timezones: http://php.net/manual/en/timezones.php
*/
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT);
/*
Set include path
See: http://php.net/manual/en/function.set-include-path.php
You need to set this if MSH itself, oAuth or other required
packages/functions on the server has not the path set in php.ini.
This could also be set in php.ini.
*/
//set_include_path('/usr/lib/pear');
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'msh');
/** MySQL database username */
define('DB_USER', 'msh');
/** MySQL database password */
define('DB_PASSWORD', 'password');
/** MySQL hostname */
define('DB_HOST', 'localhost');
?>