/wp-content/plugins/buddypress/bp-forums/bbpress/bb-config-sample.php

https://github.com/voidit/nycga2 · PHP · 63 lines · 13 code · 9 blank · 41 comment · 0 complexity · b605952ed120850e444e15f3fbc71ec6 MD5 · raw file

  1. <?php
  2. /**
  3. * The base configurations of bbPress.
  4. *
  5. * This file has the following configurations: MySQL settings, Table Prefix,
  6. * Secret Keys and bbPress Language. You can get the MySQL settings from your
  7. * web host.
  8. *
  9. * This file is used by the installer during installation.
  10. *
  11. * @package bbPress
  12. */
  13. // ** MySQL settings - You can get this info from your web host ** //
  14. /** The name of the database for bbPress */
  15. define( 'BBDB_NAME', 'bbpress' );
  16. /** MySQL database username */
  17. define( 'BBDB_USER', 'username' );
  18. /** MySQL database password */
  19. define( 'BBDB_PASSWORD', 'password' );
  20. /** MySQL hostname */
  21. define( 'BBDB_HOST', 'localhost' );
  22. /** Database Charset to use in creating database tables. */
  23. define( 'BBDB_CHARSET', 'utf8' );
  24. /** The Database Collate type. Don't change this if in doubt. */
  25. define( 'BBDB_COLLATE', '' );
  26. /**#@+
  27. * Authentication Unique Keys.
  28. *
  29. * Change these to different unique phrases!
  30. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}
  31. *
  32. * @since 1.0
  33. */
  34. define( 'BB_AUTH_KEY', 'put your unique phrase here' );
  35. define( 'BB_SECURE_AUTH_KEY', 'put your unique phrase here' );
  36. define( 'BB_LOGGED_IN_KEY', 'put your unique phrase here' );
  37. define( 'BB_NONCE_KEY', 'put your unique phrase here' );
  38. /**#@-*/
  39. /**
  40. * bbPress Database Table prefix.
  41. *
  42. * You can have multiple installations in one database if you give each a unique
  43. * prefix. Only numbers, letters, and underscores please!
  44. */
  45. $bb_table_prefix = 'bb_';
  46. /**
  47. * bbPress Localized Language, defaults to English.
  48. *
  49. * Change this to localize bbPress. A corresponding MO file for the chosen
  50. * language must be installed to a directory called "my-languages" in the root
  51. * directory of bbPress. For example, install de.mo to "my-languages" and set
  52. * BB_LANG to 'de' to enable German language support.
  53. */
  54. define( 'BB_LANG', '' );