-
Notifications
You must be signed in to change notification settings - Fork 18
/
wp-config.php
executable file
·171 lines (144 loc) · 5.49 KB
/
wp-config.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
/**
* VCAP CONFIG
* The base configurations of the WordPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys, WordPress Language, and ABSPATH. You can find more information
* by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
* wp-config.php} Codex page. You can get the MySQL settings from your web host.
*
* This file is used by the wp-config.php creation script during the
* installation. You don't have to use the web site, you can just copy this file
* to "wp-config.php" and fill in the values.
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress
*
* compose.io format
* mysql://USER:PASSWORD@COMPOSE_REGION:PORT/compose
*
* parse_url breakdown ...
* protocol: mysql
* user: USER
* pass: PASSWORD
* host: COMPOSE_REGION
* port: PORT
* path: /compose
*/
$vcap = getenv('VCAP_SERVICES');
$data = json_decode($vcap, true);
if (isset($data)) {
if (isset($data['cleardb'][0]['credentials'])) {
$creds = $data['cleardb'][0]['credentials'];
}
elseif (isset($data['user-provided'][0]['credentials'])) {
$rawcreds = $data['user-provided'][0]['credentials'];
$creds = parse_url($rawcreds['uri']);
if ($creds['scheme'] === 'mysql') {
// ** Normalizing expected keys to parseURL calculated values ** //
$creds['name'] = substr($creds['path'], 1);
$creds['username'] = $creds['user'];
$creds['password'] = $creds['pass'];
$creds['hostname'] = $creds['host'] . ':' . $creds['port'];
}
}
elseif (isset($data['compose-for-mysql'][0]['credentials'])) {
$rawcreds = $data['compose-for-mysql'][0]['credentials'];
$creds = parse_url($rawcreds['uri']);
if ($creds['scheme'] === 'mysql') {
// ** Normalizing expected keys to parseURL calculated values ** //
$creds['name'] = substr($creds['path'], 1);
$creds['username'] = $creds['user'];
$creds['password'] = $creds['pass'];
$creds['hostname'] = $creds['host'] . ':' . $creds['port'];
}
}
}
define('DB_NAME', $creds['name']);
/** MySQL database username */
define('DB_USER', $creds['username']);
/** MySQL database password */
define('DB_PASSWORD', $creds['password']);
/** MySQL hostname */
define('DB_HOST', $creds['hostname']);
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
define( 'AUTOMATIC_UPDATER_DISABLED', true );
/** Allow DB Repair*/
define('WP_ALLOW_REPAIR', true);
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'bluemix_0_5_wp_';
/**
* WordPress Localized Language, defaults to English.
*
* Change this to localize WordPress. A corresponding MO file for the chosen
* language must be installed to wp-content/languages. For example, install
* de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
* language support.
*/
define('WPLANG', '');
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
define('WP_DEBUG', false);
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/** Sets up WordPress vars and included files. */
define( 'WP_DEFAULT_THEME', 'twentyfourteen' );
require_once(ABSPATH . 'wp-settings.php');
require_once ABSPATH.'/wp-admin/includes/plugin.php';
/*
* Set the default plugins that we're going to use
* for WordPress on Bluemix.
*/
if(!get_option('default_plugins_activated')){
update_option('default_plugins_activated', '1');
activate_plugin( 'wp-bluemix-objectstorage/objectstorage.php' );
activate_plugin( 'stops-core-theme-and-plugin-updates/main.php');
//activate_plugin( 'wp-bluemix-sendgrid/bluemix-sendgrid.php');
//activate_plugin( 'sendgrid-email-delivery-simplified/wpsendgrid.php');
//activate_plugin( 'wp-super-cache/wp-cache.php');
if(!get_option('_disable_updates')){
update_option('_disable_updates', array(
'all' => '1',
));
}
if(!get_option('disable_updates_blocked')){
update_option('disable_updates_blocked', array());
}
}
/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
//This is at least one method of generating the necessary salt as needed randomly, so that every user of the boilerplate gets a new one.
define('AUTH_KEY', get_option('auth_key'));
define('SECURE_AUTH_KEY', get_option('secure_auth_key'));
define('LOGGED_IN_KEY', get_option('logged_in_key'));
define('NONCE_KEY', get_option('nonce_key'));
define('AUTH_SALT', get_option('auth_salt'));
define('SECURE_AUTH_SALT', get_option('secure_auth_salt'));
define('LOGGED_IN_SALT', get_option('logged_in_salt'));
define('NONCE_SALT', get_option('nonce_salt'));