· 9 years ago · Jan 24, 2017, 12:36 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 by
7 * 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 */
19//define('WP_CACHE', true); //Added by WP-Cache Manager
20define( 'WPCACHEHOME', '/homepages/2/d499621188/htdocs/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager
21define( 'DB_NAME', 'db547031715' );
22define('WP_MEMORY_LIMIT', '256M');
23
24/** MySQL database username */
25define( 'DB_USER', 'dbo547031715' );
26
27/** MySQL database password */
28define( 'DB_PASSWORD', 'bento@@2013' );
29
30/** MySQL hostname */
31define( 'DB_HOST', 'db547031715.db.1and1.com:3306' );
32
33/** Database Charset to use in creating database tables. */
34define('DB_CHARSET', 'utf8');
35
36/** The Database Collate type. Don't change this if in doubt. */
37define('DB_COLLATE', '');
38
39/**#@+
40 * Authentication Unique Keys.
41 *
42 * Change these to different unique phrases!
43 * You can generate these using the {@link http://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
44 *
45 * @since 2.6.0
46 */
47define('AUTH_KEY', 'Qy&UGQso&!*vIaLmuu9Pjd^O@0VdR!nLs6k2bfFZBEWs4qu0YnWENKJ49j9$Wh8c');
48define('SECURE_AUTH_KEY', 'Ch$JCXewkcn5enDrvqUB@y77FUJxe0OfmZv$G2HF7HanQe6e*JCr@URV%GiAmfcz');
49define('LOGGED_IN_KEY', 'F(DBXlZ1OSiMxH@pc1FoucU!lU^8FHG&m$egt%TQjYZxdldY&kEnl^XjwT^iNR0M');
50define('NONCE_KEY', 'k1*Q^kGT8%SUJ&BHn3UQ7Ny9YHooyl6gKhTj$)uffsqvRP1E$bKfz3f(DmbhA0Zq');
51define('AUTH_SALT', 'U(*jYmnuMOZym(jDfddK%!9z*Fr@sFIB2R^R!R%RnfqWgxKJJMML%mzG!I5anDWN');
52define('SECURE_AUTH_SALT', '*WRJ(jBDBpGLHo*KTjSX^0zMbRPtMm@!lkLZh0xkVzJsH$N)y!CY%sffcmbSh8eo');
53define('LOGGED_IN_SALT', '5Kv3QcN6sW1%ymCqNN@#P3UDV#WWCIU@Dq$nrGy%SHGj8M#GhjZzuqE4Ve#*ON6!');
54define('NONCE_SALT', 'yikkNp#)K%2(r79H@yuWp5C8BfUSb916ggZ@eMj@U#!7s&uUsbZy5vyhcf3FyDNo');
55/**#@-*/
56
57/**
58 * WordPress Database Table prefix.
59 *
60 * You can have multiple installations in one database if you give each a unique
61 * prefix. Only numbers, letters, and underscores please!
62 */
63$table_prefix = 'wp_';
64
65/**
66 * WordPress Localized Language, defaults to English.
67 *
68 * Change this to localize WordPress. A corresponding MO file for the chosen
69 * language must be installed to wp-content/languages. For example, install
70 * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
71 * language support.
72 */
73define ('WPLANG', 'es_ES');
74
75define ('FS_METHOD', 'direct');
76
77
78/* That's all, stop editing! Happy blogging. */
79
80/** WordPress absolute path to the Wordpress directory. */
81if ( !defined('ABSPATH') )
82 define('ABSPATH', dirname(__FILE__) . '/');
83
84/** Sets up WordPress vars and included files. */
85define('CONCATENATE_SCRIPTS', false );require_once(ABSPATH . 'wp-settings.php');
86
87//--- disable auto upgrade
88define( 'AUTOMATIC_UPDATER_DISABLED', false );
89
90// Enable WP_DEBUG mode
91define('WP_DEBUG', true);
92
93// Enable Debug logging to the /wp-content/debug.log file
94define('WP_DEBUG_LOG', true);
95
96// Disable display of errors and warnings
97define('WP_DEBUG_DISPLAY', true);
98@ini_set('display_errors',0);
99
100// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
101define('SCRIPT_DEBUG', true);
102
103
104?>