· 6 years ago · Nov 07, 2019, 05:14 PM
1<?php
2
3/** Enable Caching */
4
5//##define( 'COOKIE_DOMAIN', 'lawyerist.com' );
6
7
8// ** MySQL settings ** //
9define('WPCACHEHOME', '/home/lwyrst/public_html/lawyerist/wp-content/plugins/wp-super-cache/');
10define('DB_NAME', 'lwyrst_lawyerist-wp'); // The name of the database
11define('DB_USER', 'lwyrst_wpadmin'); // Your MySQL username
12define('DB_PASSWORD', 'TbNK35b!0Q4k'); // ...and password
13define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
14define('DB_CHARSET', 'utf8');
15define('DB_COLLATE', '');
16
17/**#@+
18 * Authentication Unique Keys and Salts.
19 *
20 * Change these to different unique phrases!
21 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
22 * 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.
23 *
24 * @since 2.6.0
25 */
26define('AUTH_KEY', 'mudA1fPzB^gTsS`N{YKZa|GXt%0FF&+Xjil>[]z%&2t9H}!3rX:Hzd&J1L%+BY!U');
27define('SECURE_AUTH_KEY', 'u9$mTkwVr*y-6`$3qx!Nh7Y0={T3+4u^kceiP[ZY8:Q&$x_cfLo_XB_)<h_B<ZtT');
28define('LOGGED_IN_KEY', '6hG }8_9N$pTzS]^d!,uaS<L!129|m.6}zL^ABZdB1JYh8qh[Bb~Gc9HJPsWg-4B');
29define('NONCE_KEY', '5<k*fUu!8g+Q!Ufl=!M2_i=72P>:Cj-{RG+W;eg>FZ>EB%r|p_J-q: ~Gx%l$/wh');
30define('AUTH_SALT', 'E]YumN/kM#(n|;<<FSz6wN/!7d-CTi*nlt^5E )e/?xb{)XA?JJH!)Bs~u2_/_~ ');
31define('SECURE_AUTH_SALT', 'fH.GA1ym@!0xu$^6M$!2%_vA]FepWPqC#i;:vi}V8:B4ktiG[N6mwMvxe3/f{GYP');
32define('LOGGED_IN_SALT', 'WWML[1v<+FYLUGS2WE1ibf{H&C/sm]+1ep8>pZ^x8xf[c^Z^5yBbVTy@Q4sG^-08');
33define('NONCE_SALT', '*9:!h~W_doU~;:$=(#(Gd?i{*|ApbkWG8!D#~/S{v~hOY6Mf)asQo}8R8iAYzmdg');
34
35/**#@-*/
36
37
38// Allow WP to repair the database //
39
40define('WP_ALLOW_REPAIR', true);
41
42// Change each KEY to a different unique phrase. You won't have to remember the phrases later,
43// so make them long and complicated. You can visit http://api.wordpress.org/secret-key/1.1/
44// to get keys generated for you, or just make something up. Each key should have a different phrase.
45define('AUTH_KEY', 'f7sXx[2wbB@LBwlxS{A56y>+GM43OgzYk2[uXz iq\\Ms}?(;_a#ypoR5\'3w<G5>FL~1X'); // Change this to a unique phrase.
46define('SECURE_AUTH_KEY', '-\"r642fed3E1d>}MdGFlh@tR!QPU%/!S_6;CjO0}^>6TGM43OgzYk2[u+ <?)3 U#*X;'); // Change this to a unique phrase.
47define('LOGGED_IN_KEY', 'Q^l\"6-pLGM43OgzYk2[u\zkw>OG<U$%u0:9H:Jl)+d$~jIBTt&CPL[Dp<KY4zL3y'); // Change this to a unique phrase.
48
49
50// You can have multiple installations in one database if you give each a unique prefix
51$table_prefix = 'wpstg0_'; // Changed by WP Staging
52
53
54// Change this to localize WordPress. A corresponding MO file for the
55// chosen language must be installed to wp-content/languages.
56// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
57// to enable German language support.
58define('WPLANG', '');
59define('WP_DEBUG', false);
60// define('WP_DEBUG_LOG', true);
61// define('WP_DEBUG_DISPLAY', false);
62
63// Set cron to run no more frequently than every 10 minutes
64define( 'WP_CRON_LOCK_TIMEOUT', 600 );
65
66// Increase PHP Memory Limit
67define('WP_MEMORY_LIMIT', '128M');
68
69/* That's all, stop editing! Happy blogging. */
70
71define( 'MEDIA_TRASH', true );
72
73define('UPLOADS', 'wp-content/uploads');
74if ( ! defined( 'ABSPATH' ) )
75define('ABSPATH', dirname(__FILE__) . '/');
76require_once(ABSPATH . 'wp-settings.php');
77
78?>