[ Index ] |
PHP Cross Reference of BuddyPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * The base configuration for WordPress 4 * 5 * The wp-config.php creation script uses this file during the 6 * installation. You don't have to use the web site, you can 7 * copy this file to "wp-config.php" and fill in the values. 8 * 9 * This file contains the following configurations: 10 * 11 * * MySQL settings 12 * * Secret keys 13 * * Database table prefix 14 * * ABSPATH 15 * 16 * @link https://wordpress.org/support/article/editing-wp-config-php/ 17 * 18 * @package WordPress 19 */ 20 21 // ** MySQL settings - You can get this info from your web host ** // 22 /** The name of the database for WordPress */ 23 define( 'DB_NAME', 'tests-wordpress'); 24 25 /** MySQL database username */ 26 define( 'DB_USER', 'root'); 27 28 /** MySQL database password */ 29 define( 'DB_PASSWORD', 'password'); 30 31 /** MySQL hostname */ 32 define( 'DB_HOST', 'tests-mysql'); 33 34 /** Database Charset to use in creating database tables. */ 35 define( 'DB_CHARSET', 'utf8'); 36 37 /** The Database Collate type. Don't change this if in doubt. */ 38 define( 'DB_COLLATE', ''); 39 40 /**#@+ 41 * Authentication Unique Keys and Salts. 42 * 43 * Change these to different unique phrases! 44 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} 45 * 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. 46 * 47 * @since 2.6.0 48 */ 49 define( 'AUTH_KEY', 'a89b7f2679fa896912a0bc6663b8c1dee8845e0e'); 50 define( 'SECURE_AUTH_KEY', '0819cb8ebad69f537adc5351b095a91e3fee5fbd'); 51 define( 'LOGGED_IN_KEY', 'ea0ab2035e22b76f751a44df6a89d85c44f9ba1f'); 52 define( 'NONCE_KEY', '4665de6759a3f771be0509b8964c0dee8b12cc3e'); 53 define( 'AUTH_SALT', 'cd8ff2945b6e3bf3257845f6f1c14de673f38bb1'); 54 define( 'SECURE_AUTH_SALT', 'd9c8a7a96d41e863c0e8517632e0d4f1ab135d49'); 55 define( 'LOGGED_IN_SALT', '318a8828a24ea9fa51d10a0aabb92d419c716e3e'); 56 define( 'NONCE_SALT', '08e12a5848e0f7516e1b527497239c41f55904ab'); 57 58 /**#@-*/ 59 60 /** 61 * WordPress Database Table prefix. 62 * 63 * You can have multiple installations in one database if you give each 64 * a unique prefix. Only numbers, letters, and underscores please! 65 */ 66 $table_prefix = 'wptests_'; 67 68 /** 69 * Test with WordPress debug mode (default). 70 */ 71 define( 'WP_DEBUG', true ); 72 73 // Set Site domain, email and title constants. 74 define( 'WP_TESTS_DOMAIN', 'example.org' ); 75 define( 'WP_TESTS_EMAIL', 'admin@example.org' ); 76 define( 'WP_TESTS_TITLE', 'Test BP' ); 77 78 define( 'WP_PHP_BINARY', 'php' ); 79 80 /** Absolute path to the WordPress directory. */ 81 if ( ! defined( 'ABSPATH' ) ) { 82 define( 'ABSPATH', '/var/www/html/' ); 83 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Nov 21 01:00:57 2024 | Cross-referenced by PHPXref 0.7.1 |