· 8 years ago · Jan 05, 2018, 10:32 PM
1<?php
2/**
3 * The base configurations of the WordPress.
4 *
5 * This file has the following configurations: MySQL settings, Table Prefix,
6 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
7 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
8 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
9 *
10 * This file is used by the wp-config.php creation script during the
11 * installation. You don't have to use the web site, you can just copy this file
12 * to "wp-config.php" and fill in the values.
13 *
14 * @package WordPress
15 */
16
17// ** MySQL settings - You can get this info from your web host ** //
18/** The name of the database for WordPress */
19define('WP_CACHE', true); //Added by WP-Cache Manager
20define( 'WPCACHEHOME', '/home/andrew66/ocbklawyer.com/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager
21define('DB_NAME', 'ocbklawyer_com');
22
23/** MySQL database username */
24define('DB_USER', 'ocbklawyercom');
25
26/** MySQL database password */
27define('DB_PASSWORD', 'ARwYFPcT');
28
29/** MySQL hostname */
30define('DB_HOST', 'mysql.ocbklawyer.com');
31
32/** Database Charset to use in creating database tables. */
33define('DB_CHARSET', 'utf8');
34
35/** The Database Collate type. Don't change this if in doubt. */
36define('DB_COLLATE', '');
37
38/**#@+
39 * Authentication Unique Keys and Salts.
40 *
41 * Change these to different unique phrases!
42 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
43 * 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.
44 *
45 * @since 2.6.0
46 */
47define('AUTH_KEY', 'R`0p(QD/Dzipqy9?G:!MQX1o!qFL3$Z!~2:3X_ax;KT+c7i|#+NmzXvw;UmFeW^u');
48define('SECURE_AUTH_KEY', '%0OzI2oKq#@zSOl:v0uF|%Q~tEvR(h|o#i7e4w8rM_d")R|x/nad6|/1Uf$Gw&zV');
49define('LOGGED_IN_KEY', 'Ja5G0:0;NrqwkkigPCLCZ*ON@8@#tzAzk;SRCap0n+`$BO&4q*lprsV*YR;yNKWC');
50define('NONCE_KEY', 'ygxrL1ha%O2B``xoSuPIT(EaxKppAJ%gzV"|X7~jz+f/a(m:;Ey/W@_V:yWK|6Q0');
51define('AUTH_SALT', 'S4~Wa#lnaOy&Asq0RApn+q|s*:$~^zlUUW&e3~S+X/IiszkdK7ns0dv1|5gPnPU!');
52define('SECURE_AUTH_SALT', '*leBaFv6WM7B_2kSK_;KHl/|7nIu0lsHYlM5BUF5GCl9EkdnN(7ah6Lfa0T;TKjw');
53define('LOGGED_IN_SALT', 'DD**vkqmHh9`yUXRKk`TLjT**h^P/*Y*B1&/6rdV2yxvib)0WWKaYfUNde:f/I;_');
54define('NONCE_SALT', 'gYV72yEyL!nAPO/K14V`qHrB)v`pHm2vi(VS/;+NJWG2t_LBdbfCj9~Gvx#;P$&^');
55
56/**#@-*/
57
58/**
59 * WordPress Database Table prefix.
60 *
61 * You can have multiple installations in one database if you give each a unique
62 * prefix. Only numbers, letters, and underscores please!
63 */
64$table_prefix = 'wp_inbg9h_';
65
66/**
67 * Limits total Post Revisions saved per Post/Page.
68 * Change or comment this line out if you would like to increase or remove the limit.
69 */
70define('WP_POST_REVISIONS', 10);
71
72/**
73 * WordPress Localized Language, defaults to English.
74 *
75 * Change this to localize WordPress. A corresponding MO file for the chosen
76 * language must be installed to wp-content/languages. For example, install
77 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
78 * language support.
79 */
80define('WPLANG', '');
81
82/**
83 * For developers: WordPress debugging mode.
84 *
85 * Change this to true to enable the display of notices during development.
86 * It is strongly recommended that plugin and theme developers use WP_DEBUG
87 * in their development environments.
88 */
89define('WP_DEBUG', false);
90
91/* That's all, stop editing! Happy blogging. */
92
93/** Absolute path to the WordPress directory. */
94if ( !defined('ABSPATH') )
95 define('ABSPATH', dirname(__FILE__) . '/');
96
97/** Sets up WordPress vars and included files. */
98require_once(ABSPATH . 'wp-settings.php');