· 7 years ago · May 08, 2018, 01:00 PM
1<?php
2
3// BEGIN NinjaFirewall
4if ( file_exists("/membri/gherusioweb/home/wp-content/plugins/ninjafirewall/lib/firewall.php") && ! defined("NFW_STATUS") ) {
5 @include_once("/membri/gherusioweb/home/wp-content/plugins/ninjafirewall/lib/firewall.php");
6 define("NFW_WPWAF", 1);
7}
8// END NinjaFirewall
9
10/**
11 * The base configurations of the WordPress.
12 *
13 * This file has the following configurations: MySQL settings, Table Prefix,
14 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
15 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
16 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
17 *
18 * This file is used by the wp-config.php creation script during the
19 * installation. You don't have to use the web site, you can just copy this file
20 * to "wp-config.php" and fill in the values.
21 *
22 * @package WordPress
23 */
24// ** MySQL settings - You can get this info from your web host ** //
25/** The name of the database for WordPress */
26/* modifica */
27define('DB_NAME', 'my_gherusioweb');
28
29/** MySQL database username */
30define('DB_USER', 'gherusioweb');
31/* fine */
32
33/** MySQL database password */
34define('DB_PASSWORD', '');
35
36/** MySQL hostname */
37define('DB_HOST', 'localhost');
38
39/** Database Charset to use in creating database tables. */
40define('DB_CHARSET', 'utf8');
41
42/** The Database Collate type. Don't change this if in doubt. */
43define('DB_COLLATE', '');
44
45/**#@+
46 * Authentication Unique Keys and Salts.
47 *
48 * Change these to different unique phrases!
49 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
50 * 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.
51 *
52 * @since 2.6.0
53 */
54/* modifica */
55define('AUTH_KEY', '5KDoK%6Qu2^RCJ6Ux4RvtqAf!^(r@sVtKq1!9X#^9OnbIK^&l9fL4ZAd3SJGTZ5B');
56define('SECURE_AUTH_KEY', '(khE2(U7Q@^6vb1(C$r#&n4GZsqr^t729tjve5i&NTtolcCtip9nuR25Q8xxX&Dq');
57define('LOGGED_IN_KEY', 'coNf@819467R^MPYn)u9fe)0y7Bo#)4L)J%FANuI(1TA9Kpf2DcA8U2!&zQJNgSV');
58define('NONCE_KEY', '(#epvX4g^Gou5IjlIu*x^BUx(@vn7c4z7&@%Ju61D$h(uj#AS#Hf5XPzY*^3Ck89');
59define('AUTH_SALT', '^qx%0gwuZ@qu!yQd86DM(89iTw$4dbNuy6^*Vl^U50$LPvE#37KQKxU)AGrQFx($');
60define('SECURE_AUTH_SALT', 'I4U8%A&81SZF1ePW@6GK1h$RdkkI0R&ClbZe!bB2UO5aC3g#zoRD&^nSOHs8Kjun');
61define('LOGGED_IN_SALT', 'dgf*2MJ1FYHWOh$OvwaKRhBs$!yQ2TwiJZLv6Nyx$%F)XPmbehxA$906g79$qECY');
62define('NONCE_SALT', 'CMerHA(firg4I)RZz*&n$NgKlk6Cm()yJ(I)K!W)k%Q@g8KVRhXkgqXYQqd5MVzP');
63/* fine */
64
65/**#@-*/
66
67/**
68 * WordPress Database Table prefix.
69 *
70 * You can have multiple installations in one database if you give each a unique
71 * prefix. Only numbers, letters, and underscores please!
72 */
73/* modifica */
74$table_prefix = 'avwp_';
75/* fine */
76
77/**
78 * WordPress Localized Language, defaults to English.
79 *
80 * Change this to localize WordPress. A corresponding MO file for the chosen
81 * language must be installed to wp-content/languages. For example, install
82 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
83 * language support.
84 */
85/* modifica */
86define('WPLANG', 'it_IT');
87/* fine */
88/**
89 * For developers: WordPress debugging mode.
90 *
91 * Change this to true to enable the display of notices during development.
92 * It is strongly recommended that plugin and theme developers use WP_DEBUG
93 * in their development environments.
94 */
95define('WP_DEBUG', false);
96define('ALTERNATE_WP_CRON', true);
97
98/* That's all, stop editing! Happy blogging. */
99
100/** Absolute path to the WordPress directory. */
101if ( !defined('ABSPATH') )
102 define('ABSPATH', dirname(__FILE__) . '/');
103
104/** Sets up WordPress vars and included files. */
105
106/* modifica */
107$_SERVER['DOCUMENT_ROOT'] = "/membri/gherusioweb";
108$_ENV['DOCUMENT_ROOT'] = "/membri/gherusioweb";
109/* fine */
110require_once(ABSPATH . 'wp-settings.php');