· 9 years ago · Dec 15, 2016, 11:08 PM
1define('WP_HOME','http://localhost/~eliements/multisite/');
2define('WP_SITEURL','http://localhost/~eliements/multisite/');
3
4<?php
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
10 * by 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 */
22define('DB_NAME', 'wp_multi');
23
24/** MySQL database username */
25define('DB_USER', 'root');
26
27/** MySQL database password */
28define('DB_PASSWORD', 'password_here');
29
30/** MySQL hostname */
31define('DB_HOST', 'localhost');
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/** Enable Updates */
40define('FS_METHOD', 'direct');
41
42/** Allow Multisite */
43define('WP_ALLOW_MULTISITE', true);
44define('MULTISITE', true);
45define('SUBDOMAIN_INSTALL', false);
46define('DOMAIN_CURRENT_SITE', 'localhost');
47define('PATH_CURRENT_SITE', '/~eliements/multisite/');
48define('SITE_ID_CURRENT_SITE', 1);
49define('BLOG_ID_CURRENT_SITE', 1);
50
51// sugerido por salvador
52define('WP_HOME','http://localhost/~eliements/multisite/');
53define('WP_SITEURL','http://localhost/~eliements/multisite/');
54
55
56/**#@+
57 * Authentication Unique Keys and Salts.
58 *
59 * Change these to different unique phrases!
60 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
61 * 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.
62 *
63 * @since 2.6.0
64 */
65define('AUTH_KEY', 'put your unique phrase here');
66define('SECURE_AUTH_KEY', 'put your unique phrase here');
67define('LOGGED_IN_KEY', 'put your unique phrase here');
68define('NONCE_KEY', 'put your unique phrase here');
69define('AUTH_SALT', 'put your unique phrase here');
70define('SECURE_AUTH_SALT', 'put your unique phrase here');
71define('LOGGED_IN_SALT', 'put your unique phrase here');
72define('NONCE_SALT', 'put your unique phrase here');
73
74/**#@-*/
75
76/**
77 * WordPress Database Table prefix.
78 *
79 * You can have multiple installations in one database if you give each a unique
80 * prefix. Only numbers, letters, and underscores please!
81 */
82$table_prefix = 'wp_';
83
84/**
85 * WordPress Localized Language, defaults to English.
86 *
87 * Change this to localize WordPress. A corresponding MO file for the chosen
88 * language must be installed to wp-content/languages. For example, install
89 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
90 * language support.
91 */
92define('WPLANG', '');
93
94define('WP_ALLOW_REPAIR', true);
95
96
97/**
98 * For developers: WordPress debugging mode.
99 *
100 * Change this to true to enable the display of notices during development.
101 * It is strongly recommended that plugin and theme developers use WP_DEBUG
102 * in their development environments.
103 */
104define('WP_DEBUG', false);
105
106/* That's all, stop editing! Happy blogging. */
107
108/** Absolute path to the WordPress directory. */
109if ( !defined('ABSPATH') )
110 define('ABSPATH', dirname(__FILE__) . '/');
111
112/** Sets up WordPress vars and included files. */
113require_once(ABSPATH . 'wp-settings.php');