· 8 years ago · Jan 01, 2018, 02:18 AM
1$other_prefixes = array(
2 'wp7g_',
3);
4
5<?php
6/**
7 * The base configuration for WordPress
8 *
9 * The wp-config.php creation script uses this file during the
10 * installation. You don't have to use the web site, you can
11 * copy this file to "wp-config.php" and fill in the values.
12 *
13 * This file contains the following configurations:
14 *
15 * * MySQL settings
16 * * Secret keys
17 * * Database table prefix
18 * * ABSPATH
19 *
20 * @link https://codex.wordpress.org/Editing_wp-config.php
21 *
22 * @package WordPress
23 */
24
25// ** MySQL settings - You can get this info from your web host ** //
26/** The name of the database for WordPress */
27define('DB_NAME', 'oursite_test2');
28
29
30/** MySQL database username */
31define('DB_USER', 'oursite_test2');
32
33
34/** MySQL database password */
35define('DB_PASSWORD', 'hidden');
36
37
38/** MySQL hostname */
39define('DB_HOST', 'localhost');
40
41
42/** Database Charset to use in creating database tables. */
43define('DB_CHARSET', 'hidden');
44
45
46/** The Database Collate type. Don't change this if in doubt. */
47define('DB_COLLATE', '');
48
49
50/**#@+
51 * Authentication Unique Keys and Salts.
52 *
53 * Change these to different unique phrases!
54 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
55 * 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.
56 *
57 * @since 2.6.0
58 */
59
60define('AUTH_KEY',hidden');
61
62define('SECURE_AUTH_KEY', 'hidden');
63
64define('LOGGED_IN_KEY', 'hidden');
65
66define('NONCE_KEY', 'hidden');
67
68define('AUTH_SALT', 'hidden');
69
70define('SECURE_AUTH_SALT', 'hidden');
71
72define('LOGGED_IN_SALT', 'hidden');
73
74define('NONCE_SALT', 'hidden');
75
76
77define('COOKIE_DOMAIN', '.test.oursite.com');
78
79define('COOKIEPATH', '/');
80
81define('COOKIEHASH', md5('test.oursite.com'));
82
83
84define('CUSTOM_USER_TABLE', 'wp7g_users');
85
86define('CUSTOM_USER_META_TABLE', 'wp7g_usermeta');
87
88
89/**#@-*/
90
91
92/**
93 * WordPress Database Table prefix.
94 *
95 * You can have multiple installations in one database if you give each
96 * a unique prefix. Only numbers, letters, and underscores please!
97 */
98$table_prefix = 'wp7g_';
99
100
101/**
102 * For developers: WordPress debugging mode.
103 *
104 * Change this to true to enable the display of notices during development.
105 * It is strongly recommended that plugin and theme developers use WP_DEBUG
106 * in their development environments.
107 *
108 * For information on other constants that can be used for debugging,
109 * visit the Codex.
110 *
111 * @link https://codex.wordpress.org/Debugging_in_WordPress
112 */
113
114define('WP_DEBUG', false);
115
116
117/* That's all, stop editing! Happy blogging. */
118
119/** Absolute path to the WordPress directory. */
120if ( !defined('ABSPATH') )
121 define('ABSPATH', dirname(__FILE__) . '/');
122
123/** Sets up WordPress vars and included files. */
124require_once(ABSPATH . 'wp-settings.php');
125
126
127****wp-config.php for forum.oursite.com*****
128
129
130<?php
131/**
132 * The base configuration for WordPress
133 *
134 * The wp-config.php creation script uses this file during the
135 * installation. You don't have to use the web site, you can
136 * copy this file to "wp-config.php" and fill in the values.
137 *
138 * This file contains the following configurations:
139 *
140 * * MySQL settings
141 * * Secret keys
142 * * Database table prefix
143 * * ABSPATH
144 *
145 * @link https://codex.wordpress.org/Editing_wp-config.php
146 *
147 * @package WordPress
148 */
149
150
151// ** MySQL settings - You can get this info from your web host ** //
152/** The name of the database for WordPress */
153define('DB_NAME', 'oursite_test2');
154
155
156/** MySQL database username */
157define('DB_USER', 'oursite_test2');
158
159
160/** MySQL database password */
161define('DB_PASSWORD', 'hidden');
162
163
164/** MySQL hostname */
165define('DB_HOST', 'localhost');
166
167
168/** Database Charset to use in creating database tables. */
169define('DB_CHARSET', 'hidden');
170
171
172/** The Database Collate type. Don't change this if in doubt. */
173define('DB_COLLATE', '');
174
175
176/**#@+
177 * Authentication Unique Keys and Salts.
178 *
179 * Change these to different unique phrases!
180 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
181 * 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.
182 *
183 * @since 2.6.0
184 */
185
186define('AUTH_KEY',hidden');
187
188define('SECURE_AUTH_KEY', 'hidden');
189
190define('LOGGED_IN_KEY', 'hidden');
191
192define('NONCE_KEY', 'hidden');
193
194define('AUTH_SALT', 'hidden');
195
196define('SECURE_AUTH_SALT', 'hidden');
197
198define('LOGGED_IN_SALT', 'hidden');
199
200define('NONCE_SALT', 'hidden');
201
202
203define('COOKIE_DOMAIN', '.test.oursite.com');
204
205define('COOKIEPATH', '/');
206
207define('COOKIEHASH', md5('test.oursite.com'));
208
209
210define('CUSTOM_USER_TABLE', 'wp7g_users');
211
212define('CUSTOM_USER_META_TABLE', 'wp7g_usermeta');
213
214
215/**#@-*/
216
217
218/**
219 * WordPress Database Table prefix.
220 *
221 * You can have multiple installations in one database if you give each
222 * a unique prefix. Only numbers, letters, and underscores please!
223 */
224
225$table_prefix = 'wp5l_';
226
227
228/**
229 * For developers: WordPress debugging mode.
230 *
231 * Change this to true to enable the display of notices during development.
232 * It is strongly recommended that plugin and theme developers use WP_DEBUG
233 * in their development environments.
234 *
235 * For information on other constants that can be used for debugging,
236 * visit the Codex.
237 *
238 * @link https://codex.wordpress.org/Debugging_in_WordPress
239 */
240
241define('WP_DEBUG', false);
242
243
244/* That's all, stop editing! Happy blogging. */
245
246/** Absolute path to the WordPress directory. */
247
248if ( !defined('ABSPATH') )
249 define('ABSPATH', dirname(__FILE__) . '/');
250
251
252/** Sets up WordPress vars and included files. */
253
254require_once(ABSPATH . 'wp-settings.php');