[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/bp-forums/bbpress/ -> bb-config-sample.php (source)

   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', 'bbpress' );
  17  
  18  /** MySQL database username */
  19  define( 'BBDB_USER', 'username' );
  20  
  21  /** MySQL database password */
  22  define( 'BBDB_PASSWORD', 'password' );
  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', 'put your unique phrase here' );
  42  define( 'BB_SECURE_AUTH_KEY', 'put your unique phrase here' );
  43  define( 'BB_LOGGED_IN_KEY', 'put your unique phrase here' );
  44  define( 'BB_NONCE_KEY', 'put your unique phrase here' );
  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 = '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', '' );


Generated: Thu Dec 7 01:01:35 2017 Cross-referenced by PHPXref 0.7.1