Advertisement
Guest User

wp-config

a guest
Aug 8th, 2014
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.22 KB | None | 0 0
  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
  7.  * by 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. /* modifica */
  20. define('DB_NAME', 'my_hacknewgen');
  21.  
  22. /** MySQL database username */
  23. define('DB_USER', 'hacknewgen');
  24. /* fine */
  25.  
  26. /** MySQL database password */
  27. define('DB_PASSWORD', '');
  28.  
  29. /** MySQL hostname */
  30. define('DB_HOST', 'localhost');
  31.  
  32. /** Database Charset to use in creating database tables. */
  33. define('DB_CHARSET', 'utf8');
  34.  
  35. /** The Database Collate type. Don't change this if in doubt. */
  36. define('DB_COLLATE', '');
  37.  
  38. /**#@+
  39.  * Authentication Unique Keys and Salts.
  40.  *
  41.  * Change these to different unique phrases!
  42.  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  43.  * 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.
  44.  *
  45.  * @since 2.6.0
  46.  */
  47. /* modifica */
  48. define('AUTH_KEY',         '....');
  49. define('SECURE_AUTH_KEY',  '....')
  50. define('LOGGED_IN_KEY',    'iFu');
  51. define('NONCE_KEY',        ''
  52. define('AUTH_SALT',        '');
  53. define('SECURE_AUTH_SALT', ';hrtn3A#keE6IUDkG&rg9R1wgRj7l');
  54. define('LOGGED_IN_SALT',   'iL%S)*#*3J1jWZ');
  55. define('NONCE_SALT',       'BcXB4eJ&^)qpc$59@H(y!h');
  56. /* fine */
  57.  
  58. /**#@-*/
  59.  
  60. /**
  61.  * WordPress Database Table prefix.
  62.  *
  63.  * You can have multiple installations in one database if you give each a unique
  64.  * prefix. Only numbers, letters, and underscores please!
  65.  */
  66. /* modifica */
  67. $table_prefix  = 'avwp_';
  68. /* fine */
  69.  
  70. /**
  71.  * WordPress Localized Language, defaults to English.
  72.  *
  73.  * Change this to localize WordPress. A corresponding MO file for the chosen
  74.  * language must be installed to wp-content/languages. For example, install
  75.  * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
  76.  * language support.
  77.  */
  78. /* modifica */
  79. define('WPLANG', 'fr_FR');`
  80. /* fine */
  81. /**
  82.  * For developers: WordPress debugging mode.
  83.  *
  84.  * Change this to true to enable the display of notices during development.
  85.  * It is strongly recommended that plugin and theme developers use WP_DEBUG
  86.  * in their development environments.
  87.  */
  88. define('WP_DEBUG', false);
  89. define('ALTERNATE_WP_CRON', true);
  90.  
  91. /* That's all, stop editing! Happy blogging. */
  92.  
  93. /** Absolute path to the WordPress directory. */
  94. if ( !defined('ABSPATH') )
  95.     define('ABSPATH', dirname(__FILE__) . '/');
  96.  
  97. /** Sets up WordPress vars and included files. */
  98.  
  99. /* modifica */
  100.  
  101. /* fine */
  102. $_SERVER['DOCUMENT_ROOT'] = "/membri/hacknewgen";
  103. $_ENV['DOCUMENT_ROOT'] = "/membri/hacknewgen";
  104. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement