· 9 years ago · Oct 26, 2016, 06:58 PM
1<?php
2//increase WP Memory Limit
3define('WP_CACHE', true); //Added by WP-Cache Manager
4define( 'WPCACHEHOME', '/Users/Max/Sites/wordpress/bestwebmulti/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager
5define('WP_MEMORY_LIMIT', '350M');
6/**
7 * The base configuration for WordPress
8 *
9 * The wp-config.php creation script uses this file during the
10 * installation. You don't have to use the web site, you can
11 * copy this file to "wp-config.php" and fill in the values.
12 *
13 * This file contains the following configurations:
14 *
15 * * MySQL settings
16 * * Secret keys
17 * * Database table prefix
18 * * ABSPATH
19 *
20 * @link https://codex.wordpress.org/Editing_wp-config.php
21 *
22 * @package WordPress
23 */
24
25// ** MySQL settings - You can get this info from your web host ** //
26/** The name of the database for WordPress */
27define('DB_NAME', 'db650501209');
28
29/** MySQL database username */
30define('DB_USER', 'dbo650501209');
31
32/** MySQL database password */
33define('DB_PASSWORD', 'Sk8F8Artbees');
34
35/** MySQL hostname */
36define('DB_HOST', 'db650501209.db.1and1.com');
37
38/** Database Charset to use in creating database tables. */
39define('DB_CHARSET', 'utf8');
40
41/** The Database Collate type. Don't change this if in doubt. */
42define('DB_COLLATE', '');
43
44/**#@+
45 * Authentication Unique Keys and Salts.
46 *
47 * Change these to different unique phrases!
48 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
49 * 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.
50 *
51 * @since 2.6.0
52 */
53define('AUTH_KEY', 'put your unique phrase here');
54define('SECURE_AUTH_KEY', 'put your unique phrase here');
55define('LOGGED_IN_KEY', 'put your unique phrase here');
56define('NONCE_KEY', 'put your unique phrase here');
57define('AUTH_SALT', 'put your unique phrase here');
58define('SECURE_AUTH_SALT', 'put your unique phrase here');
59define('LOGGED_IN_SALT', 'put your unique phrase here');
60define('NONCE_SALT', 'put your unique phrase here');
61
62/**#@-*/
63
64/**
65 * WordPress Database Table prefix.
66 *
67 * You can have multiple installations in one database if you give each
68 * a unique prefix. Only numbers, letters, and underscores please!
69 */
70$table_prefix = 'wp_';
71
72/**
73 * For developers: WordPress debugging mode.
74 *
75 * Change this to true to enable the display of notices during development.
76 * It is strongly recommended that plugin and theme developers use WP_DEBUG
77 * in their development environments.
78 *
79 * For information on other constants that can be used for debugging,
80 * visit the Codex.
81 *
82 * @link https://codex.wordpress.org/Debugging_in_WordPress
83 */
84define('WP_DEBUG', false);
85define('MULTISITE', true);
86define('SUBDOMAIN_INSTALL', false);
87$base = '/';
88define('DOMAIN_CURRENT_SITE', 'bestbaueisen.eu');
89define('PATH_CURRENT_SITE', '/');
90define('SITE_ID_CURRENT_SITE', 1);
91define('BLOG_ID_CURRENT_SITE', 1);
92
93/* That's all, stop editing! Happy blogging. */
94
95/** Absolute path to the WordPress directory. */
96if ( !defined('ABSPATH') )
97 define('ABSPATH', dirname(__FILE__) . '/');
98
99/** Sets up WordPress vars and included files. */
100require_once(ABSPATH . 'wp-settings.php');