Advertisement
Guest User

Darfuria

a guest
Feb 7th, 2010
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.26 KB | None | 0 0
  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.  
  14. // ** MySQL settings - You can get this info from your web host ** //
  15. /** The name of the database for bbPress */
  16. define( 'BBDB_NAME', 'dbinfo' );
  17.  
  18. /** MySQL database username */
  19. define( 'BBDB_USER', 'dbinfo' );
  20.  
  21. /** MySQL database password */
  22. define( 'BBDB_PASSWORD', 'dbinfo' );
  23.  
  24. /** MySQL hostname */
  25. define( 'BBDB_HOST', 'localhost' );
  26.  
  27. /** Database Charset to use in creating database tables. */
  28. define( 'BBDB_CHARSET', 'utf8' );
  29.  
  30. /** The Database Collate type. Don't change this if in doubt. */
  31. define( 'BBDB_COLLATE', '' );
  32.  
  33. /**#@+
  34.  * Authentication Unique Keys.
  35.  *
  36.  * Change these to different unique phrases!
  37.  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}
  38.  *
  39.  * @since 1.0
  40.  */
  41. define( 'BB_AUTH_KEY', 'f7sXx[2wbB@LBwlxS{A56y>+mQK6p0LU44SDXz iq\Ms}?(;_a#ypoR5'3w<G5>FL~1X' );
  42. define( 'BB_SECURE_AUTH_KEY', '-\"r642fed3E1d>}MdGFlh@tR!QPU%/!S_6;CjO0}^>6TmQK6p0LU44SD+ <?)3 U#*X;' );
  43. define( 'BB_LOGGED_IN_KEY', 'Q^l\"6-pLmQK6p0LU44SD\zkw>OG<U$%u0:9H:Jl)+d$~jIBTt&CPL[Dp<KY4zL3y' );
  44. define( 'BB_NONCE_KEY', 'asdasdjkasdjkmQK6p0LU44SDjklasdjklasdkl&^%^&*(&*(jklasdjklasdjkl&*)))' );
  45. /**#@-*/
  46.  
  47. /**
  48. * bbPress Database Table prefix.
  49. *
  50. * You can have multiple installations in one database if you give each a unique
  51. * prefix. Only numbers, letters, and underscores please!
  52. */
  53. $bb_table_prefix = 'wp_bb_';
  54.  
  55. /**
  56. * bbPress Localized Language, defaults to English.
  57. *
  58. * Change this to localize bbPress. A corresponding MO file for the chosen
  59. * language must be installed to a directory called "my-languages" in the root
  60. * directory of bbPress. For example, install de.mo to "my-languages" and set
  61. * BB_LANG to 'de' to enable German language support.
  62. */
  63. define( 'BB_LANG', '' );
  64.  
  65. $bb->custom_user_table = "wp_users";
  66. $bb->custom_user_meta_table = "wp_usermeta";
  67.  
  68. $bb->uri = "url";
  69. $bb->name = " Forums";
  70.  
  71. define('WP_AUTH_COOKIE_VERSION', 2);
  72.  
  73. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement