· 5 years ago · Jan 26, 2020, 08:02 PM
1 ______ _______ _________ ______ _______ _______ _______ _______
2( __ \ ( ____ )\__ __// ___ \ ( ____ )( ____ )( __ )( ____ )
3| ( \ )| ( )| ) ( \/ \ \| ( )|| ( )|| ( ) || ( )|
4| | ) || (____)| | | ___) /| (____)|| (____)|| | / || (____)|
5| | | || __) | | (___ ( | __)| __)| (/ /) || __)
6| | ) || (\ ( | | ) \| (\ ( | (\ ( | / | || (\ (
7| (__/ )| ) \ \__ | | /\___/ /| ) \ \__| ) \ \__| (__) || ) \ \__
8(______/ |/ \__/ )_( \______/ |/ \__/|/ \__/(_______)|/ \__/
9
10Site: http://condor.wesleyan.edu/
11
12<?php
13// ** MySQL settings ** //
14define('DB_NAME', 'webnography'); // The name of the database
15define('DB_USER', 'jaryan'); // Your MySQL username
16define('DB_PASSWORD', 'pop123'); // ...and password
17define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
18define('DB_CHARSET', 'utf8');
19define('DB_COLLATE', '');
20
21// You can have multiple installations in one database if you give each a unique prefix
22$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
23
24// Change this to localize WordPress. A corresponding MO file for the
25// chosen language must be installed to wp-content/languages.
26// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
27// to enable German language support.
28define ('WPLANG', '');
29
30/* That's all, stop editing! Happy blogging. */
31
32define('ABSPATH', dirname(__FILE__).'/');
33require_once(ABSPATH.'wp-settings.php');
34?>
35
36
37Site: http://www.andrew.cmu.edu/
38<?php
39/**
40 * The base configuration for WordPress
41 *
42 * The wp-config.php creation script uses this file during the
43 * installation. You don't have to use the web site, you can
44 * copy this file to "wp-config.php" and fill in the values.
45 *
46 * This file contains the following configurations:
47 *
48 * * MySQL settings
49 * * Secret keys
50 * * Database table prefix
51 * * ABSPATH
52 *
53 * @link https://codex.wordpress.org/Editing_wp-config.php
54 *
55 * @package WordPress
56 */
57
58// ** MySQL settings - You can get this info from your web host ** //
59/** The name of the database for WordPress */
60define('DB_NAME', 'contrib_mgoel1');
61
62/** MySQL database username */
63define('DB_USER', 'mgoel1');
64
65/** MySQL database password */
66define('DB_PASSWORD', 'old16junNEW!&AUG');
67
68/** MySQL hostname */
69define('DB_HOST', 'contrib-mysql.club.cc.cmu.edu:3306');
70
71/** Database Charset to use in creating database tables. */
72define('DB_CHARSET', 'utf8');
73
74/** The Database Collate type. Don't change this if in doubt. */
75define('DB_COLLATE', '');
76
77/**#@+
78 * Authentication Unique Keys and Salts.
79 *
80 * Change these to different unique phrases!
81 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
82 * 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.
83 *
84 * @since 2.6.0
85 */
86define('AUTH_KEY', 'put your unique phrase here');
87define('SECURE_AUTH_KEY', 'put your unique phrase here');
88define('LOGGED_IN_KEY', 'put your unique phrase here');
89define('NONCE_KEY', 'put your unique phrase here');
90define('AUTH_SALT', 'put your unique phrase here');
91define('SECURE_AUTH_SALT', 'put your unique phrase here');
92define('LOGGED_IN_SALT', 'put your unique phrase here');
93define('NONCE_SALT', 'put your unique phrase here');
94
95/**#@-*/
96
97/**
98 * WordPress Database Table prefix.
99 *
100 * You can have multiple installations in one database if you give each
101 * a unique prefix. Only numbers, letters, and underscores please!
102 */
103$table_prefix = 'wp_';
104
105/**
106 * For developers: WordPress debugging mode.
107 *
108 * Change this to true to enable the display of notices during development.
109 * It is strongly recommended that plugin and theme developers use WP_DEBUG
110 * in their development environments.
111 *
112 * For information on other constants that can be used for debugging,
113 * visit the Codex.
114 *
115 * @link https://codex.wordpress.org/Debugging_in_WordPress
116 */
117define('WP_DEBUG', false);
118
119/* That's all, stop editing! Happy blogging. */
120
121/** Absolute path to the WordPress directory. */
122if ( !defined('ABSPATH') )
123 define('ABSPATH', dirname(__FILE__) . '/');
124
125/** Sets up WordPress vars and included files. */
126require_once(ABSPATH . 'wp-settings.php');
127
128
129Site: http://www.trainingadvanced.com.br/
130
131<?php
132/**
133 * The base configuration for WordPress
134 *
135 * The wp-config.php creation script uses this file during the
136 * installation. You don't have to use the web site, you can
137 * copy this file to "wp-config.php" and fill in the values.
138 *
139 * This file contains the following configurations:
140 *
141 * * MySQL settings
142 * * Secret keys
143 * * Database table prefix
144 * * ABSPATH
145 *
146 * @link https://codex.wordpress.org/Editing_wp-config.php
147 *
148 * @package WordPress
149 */
150
151// ** MySQL settings ** //
152/** The name of the database for WordPress */
153define( 'DB_NAME', 'u172400381_team1' );
154
155/** MySQL database username */
156define( 'DB_USER', 'u172400381_team1' );
157
158/** MySQL database password */
159define( 'DB_PASSWORD', 'team0110' );
160
161/** MySQL hostname */
162define( 'DB_HOST', 'localhost' );
163
164/** Database Charset to use in creating database tables. */
165define( 'DB_CHARSET', 'utf8' );
166
167/** The Database Collate type. Don't change this if in doubt. */
168define( 'DB_COLLATE', '' );
169
170/**
171 * Authentication Unique Keys and Salts.
172 *
173 * Change these to different unique phrases!
174 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
175 * 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.
176 *
177 * @since 2.6.0
178 */
179define('AUTH_KEY', 'EK~-*7:Bu9V@;r{79.5jgaqhzjnKjPf?Ly|!##j#)@2?uswjk8+$%SsBw[v<#4<H');
180define('SECURE_AUTH_KEY', 'L?ZV]:_xfbbRIR{YK[m];h9+9&(6|f6qPNh9%+- }s5Q(+Ww*-u,byoK@U4L>ch^');
181define('LOGGED_IN_KEY', 'K$WI+U@XOQ&$BC]RiRc)j|qnb5KX!+$&=*a4rU W[Dxe(Xt-ngX!&^+*:ApIU@^@');
182define('NONCE_KEY', '(H*~[2S9kWAY}45wR1})xd8#QxPn.4Vw|uqA*^P-$dM?k+3-NRlQq7:im^ymoPCN');
183define('AUTH_SALT', 'qdZLXG+0|JnDLb/AAHV5?ygqw1v9k%=>{%6=[=o_!1df>+`5F1;z71bc0Iosy<7X');
184define('SECURE_AUTH_SALT', 'vB,`OuX,2%ilnn/Hx[me*XB^wUS8FO_cQ !-s?]*A`^.b*s][S02aqNGpZkH>x9e');
185define('LOGGED_IN_SALT', '_kcq#&FUyK;y++ddiDOxl_X/|B`|Xa;iJ$ib-u|KzJT|g-p)$2MQGUpD%HmoA!?R');
186define('NONCE_SALT', '4eC5bzV(bP50<jO} -+5IIzwNBP|SaF4@WO7|s29)t)U_j0D>7Bx@kPT-{iM[d{w');
187
188
189/**
190 * WordPress Database Table prefix.
191 *
192 * You can have multiple installations in one database if you give each
193 * a unique prefix. Only numbers, letters, and underscores please!
194 */
195$table_prefix = 'wp_';
196
197
198
199
200/* That's all, stop editing! Happy blogging. */
201
202/** Absolute path to the WordPress directory. */
203if ( ! defined( 'ABSPATH' ) )
204 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
205
206/** Sets up WordPress vars and included files. */
207require_once ABSPATH . 'wp-settings.php';
208
209
210site: http://wsfixers.org/
211
212<?php
213
214/**
215 * The base configurations of the WordPress.
216 *
217 * This file has the following configurations: MySQL settings, Table Prefix,
218 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
219 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
220 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
221 *
222 * This file is used by the wp-config.php creation script during the
223 * installation. You don't have to use the web site, you can just copy this file
224 * to "wp-config.php" and fill in the values.
225 *
226 * @package WordPress
227 */
228
229// ** MySQL settings - You can get this info from your web host ** //
230/** The name of the database for WordPress */
231// //Added by WP-Cache Manager
232define( 'WPCACHEHOME', '/home/web/swsnet/wordpress/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager
233define('DB_NAME', 'wp_swsnet');
234
235/** MySQL database username */
236define('DB_USER', 'swsnet');
237
238/** MySQL database password */
239define('DB_PASSWORD', 'sws4green');
240
241/** MySQL hostname */
242define('DB_HOST', 'localhost');
243
244/** Database Charset to use in creating database tables. */
245define('DB_CHARSET', 'utf8');
246
247/** The Database Collate type. Don't change this if in doubt. */
248define('DB_COLLATE', '');
249
250/**#@+
251 * Authentication Unique Keys and Salts.
252 *
253 * Change these to different unique phrases!
254 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
255 * 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.
256 *
257 * @since 2.6.0
258 */
259
260/**#@-*/
261
262/**
263 * WordPress Database Table prefix.
264 *
265 * You can have multiple installations in one database if you give each a unique
266 * prefix. Only numbers, letters, and underscores please!
267 */
268$table_prefix = 'wp_';
269
270/**
271 * WordPress Localized Language, defaults to English.
272 *
273 * Change this to localize WordPress. A corresponding MO file for the chosen
274 * language must be installed to wp-content/languages. For example, install
275 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
276 * language support.
277 */
278define('WPLANG', '');
279
280/**
281 * For developers: WordPress debugging mode.
282 *
283 * Change this to true to enable the display of notices during development.
284 * It is strongly recommended that plugin and theme developers use WP_DEBUG
285 * in their development environments.
286 */
287#define('WP_DEBUG', true);
288
289define('WP_ALLOW_MULTISITE', true);
290
291define( 'MULTISITE', true );
292define( 'SUBDOMAIN_INSTALL', true );
293$base = '/';
294
295define( 'DOMAIN_CURRENT_SITE', 'sustainablewestseattle.org' );
296define( 'PATH_CURRENT_SITE', '/' );
297define( 'SITE_ID_CURRENT_SITE', 1 );
298define( 'BLOG_ID_CURRENT_SITE', 1 );
299
300
301define('WP_MEMORY_LIMIT', '64M');
302
303
304define( 'AUTH_SALT', 'xO$EQ+6Blr|[sT(P)V/FF:<|:]XsF?_|#XUM9JGS3-kQ3i+@S6+RV+2,WFPSZo0x' );
305define( 'SECURE_AUTH_SALT', 's3UV%2_.mVK2|-abXCyma=uGGsn{,A[c<Tew)JI^Wt~z)?a[|jfh}v^K.!Ir6#{A' );
306define( 'LOGGED_IN_SALT', 'Ar|zjT9}A4j>ny|vH5K/.6ekC|NyMe9j)0u=d )Wy1CvCNm;CuwP>)HU$#1~gr9q' );
307define( 'NONCE_SALT', 'kC ,evb=31Zv|[&RB0ol^n<7r*QCA|w#.2uw>L2-r=(?WS`:G-;L dSl{$EwF7[r' );
308
309define( 'AUTH_KEY', 'OtL~ITy`]^aw8+chZXG+,N.SGGG o8jN3xUM`(oI`~H:7K8k]=g1{}`*3@>I6Ami' );
310define( 'SECURE_AUTH_KEY', '7{OQSF<2un=Nb1u}Gi1[dG&j]+.>E|ow!$m)yrLSR,(fgTTYU2p8Qe:7_oHcE~fd' );
311define( 'LOGGED_IN_KEY', 'UPRlq$TyT*dALh~;],z?Vl/]]=Q;|y;8]wf-1 |>m.Th6jd}wYY=b1zhcVRh]Wr3' );
312define( 'NONCE_KEY', ';eCO-;WtmxLE7ZW5xa|=/!fQ,1WFGCg?D1~jT#x,Y0#C s)-qR<QBz?K$*auX2.i' );
313
314
315/* That's all, stop editing! Happy blogging. */
316
317/** Absolute path to the WordPress directory. */
318if ( !defined('ABSPATH') )
319 define('ABSPATH', dirname(__FILE__) . '/');
320
321/* For domain mapping */
322define( 'SUNRISE', 'on' );
323
324/** Sets up WordPress vars and included files. */
325require_once(ABSPATH . 'wp-settings.php');
326
327
328
329site: http://test.scripts.psu.edu/
330
331<?php
332// ** MySQL settings ** //
333define('DB_NAME', 'tjs188_wordpress'); // The name of the database
334define('DB_USER', 'tjs188_tim'); // Your MySQL username
335define('DB_PASSWORD', 'bassie'); // ...and password
336define('DB_HOST', 'mysql306.ixwebhosting.com'); // 99% chance you won't need to change this value
337define('DB_CHARSET', 'utf8');
338define('DB_COLLATE', '');
339
340// Change each KEY to a different unique phrase. You won't have to remember the phrases later,
341// so make them long and complicated. You can visit http://api.wordpress.org/secret-key/1.1/
342// to get keys generated for you, or just make something up. Each key should have a different phrase.
343define('AUTH_KEY', '5}ifX_H1F!!%^$h-fdPc]L4*86RZWF{HnZH}py*nXGe%U#kc/3d}S-\"9[3[FYGoa');
344define('SECURE_AUTH_KEY', 'K|MP\']t]|`K%C11P%,HS<5N_BlIjBhBKC>FYls,\'KK.Nqm\'~FYEZ(;O\\\"&\'Rm+|r');
345define('LOGGED_IN_KEY', ':Orz+6c&oMb 6B@Z01Cp<9DD?[7b<2BX66Q!UBwH.c]9j=JQA(cB*2xCed]KbmJ.');
346
347// You can have multiple installations in one database if you give each a unique prefix
348$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
349
350// Change this to localize WordPress. A corresponding MO file for the
351// chosen language must be installed to wp-content/languages.
352// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
353// to enable German language support.
354define ('WPLANG', '');
355
356/* That's all, stop editing! Happy blogging. */
357
358if ( !defined('ABSPATH') )
359 define('ABSPATH', dirname(__FILE__) . '/');
360require_once(ABSPATH . 'wp-settings.php');
361?>