/wp-config.php

https://gitlab.com/juanito.abelo/nlmobile · PHP · 94 lines · 22 code · 15 blank · 57 comment · 1 complexity · 8d722792d6f277364993e3242e45600b MD5 · raw file

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