· 6 years ago · Sep 22, 2019, 04:48 AM
1<?php
2/** Enable W3 Total Cache */
3define('WP_CACHE', true); // Added by W3 Total Cache
4
5/**
6 * The base configurations of the WordPress.
7 *
8 * This file has the following configurations: MySQL settings, Table Prefix,
9 * Secret Keys, WordPress Language, and ABSPATH. You can find more information by
10 * visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
11 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
12 *
13 * This file is used by the wp-config.php creation script during the
14 * installation. You don't have to use the web site, you can just copy this file
15 * to "wp-config.php" and fill in the values.
16 *
17 * @package WordPress
18 */
19
20// ** MySQL settings - You can get this info from your web host ** //
21/** The name of the database for WordPress */
22 //Added by WP-Cache Manager
23define( 'WPCACHEHOME', '/homepages/18/d460989413/htdocs/clickandbuilds/WordPress/MyBlog4/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager
24define('DB_NAME', 'db487183312');
25
26/** MySQL database username */
27define('DB_USER', 'dbo487183312');
28
29/** MySQL database password */
30define('DB_PASSWORD', 'Mooninjune100');
31
32/** MySQL hostname */
33define('DB_HOST', 'db487183312.db.1and1.com:3306');
34
35/** Database Charset to use in creating database tables. */
36define('DB_CHARSET', 'utf8');
37
38/** The Database Collate type. Don't change this if in doubt. */
39define('DB_COLLATE', '');
40
41/**#@+
42 * Authentication Unique Keys.
43 *
44 * Change these to different unique phrases!
45 * You can generate these using the {@link http://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
46 *
47 * @since 2.6.0
48 */
49define('AUTH_KEY', '1@ruqAldoent!jGuQxyiAWRZpemTJONQVfRvXTUfT2s@(QwUyDG(@ukACzpsTopA');
50define('SECURE_AUTH_KEY', 'T69U%6mAmURxDf!kRvSk3QGsJk9F@ZzXp6uV3qkxravJQ7#RLyZE&nokIz!jbDOq');
51define('LOGGED_IN_KEY', 'n!o79D^L%SbClu4f)BTzoYXdKNZE1Vp29L&kh73udXdiF&yO#cr2PKCv2EgxeM5t');
52define('NONCE_KEY', 'tsK2a$(gugGy%3LgWTWHQX%!T$Oxl!u$hV@VVQ(gWhfw4yOH$hNjFm4#B3Fhhc0f');
53define('AUTH_SALT', 'sXOLsZs*EM(cs0B6aSsoQLgLB7OHz9kiOnFk9ZhqF$YBUq4xQzAdcgEeXF8YGbsA');
54define('SECURE_AUTH_SALT', 'QC^zYEcBx1nIpxLZhnCjj9fSQbs%THvHvY@v0Wb^kfJcCLc2#h@2t(8dtIE$K@y9');
55define('LOGGED_IN_SALT', 'fm9E8SaGvY544zEIW&#eSX*wYlMesc(HjgsNZ0Q8WbnCSNV&wD*N5JPJBmyL#JTJ');
56define('NONCE_SALT', 'IPWjltY7o%TQK%VgDPz&s@uiL5HJqw4R!SMNsqKY7EM5JLHhLNvy53O7&pm8f#&3');
57/**#@-*/
58
59/**
60 * WordPress Database Table prefix.
61 *
62 * You can have multiple installations in one database if you give each a unique
63 * prefix. Only numbers, letters, and underscores please!
64 */
65$table_prefix = 'tdh32bolmowp_';
66
67/**
68 * WordPress Localized Language, defaults to English.
69 *
70 * Change this to localize WordPress. A corresponding MO file for the chosen
71 * language must be installed to wp-content/languages. For example, install
72 * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
73 * language support.
74 */
75define ('WPLANG', 'en_US');
76
77define ('FS_METHOD', 'direct');
78
79define('WP_DEBUG', false);
80
81/* That's all, stop editing! Happy blogging. */
82
83/** WordPress absolute path to the Wordpress directory. */
84if ( !defined('ABSPATH') )
85 define('ABSPATH', dirname(__FILE__) . '/');
86
87/** Sets up WordPress vars and included files. */
88require_once(ABSPATH . 'wp-settings.php');
89
90?>