Advertisement
katubug

wp-config.php

Nov 27th, 2023
1,151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.45 KB | None | 0 0
  1. <?php
  2. define( 'WP_CACHE', true );
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. /**
  28.  * The base configuration for WordPress
  29.  *
  30.  * The wp-config.php creation script uses this file during the installation.
  31.  * You don't have to use the web site, you can copy this file to "wp-config.php"
  32.  * and fill in the values.
  33.  *
  34.  * This file contains the following configurations:
  35.  *
  36.  * * Database settings
  37.  * * Secret keys
  38.  * * Database table prefix
  39.  * * ABSPATH
  40.  *
  41.  * @link https://wordpress.org/documentation/article/editing-wp-config-php/
  42.  *
  43.  * @package WordPress
  44.  */
  45.  
  46. // ** Database settings - You can get this info from your web host ** //
  47. /** The name of the database for WordPress */
  48. define( 'DB_NAME', 'applesim_wbc' );
  49.  
  50. /** Database username */
  51. define( 'DB_USER', 'applesim_wbc' );
  52.  
  53. /** Database password */
  54. define( 'DB_PASSWORD', 's!7h.S[6-f2[paYj' );
  55.  
  56. /** Database hostname */
  57. define( 'DB_HOST', 'localhost' );
  58.  
  59. /** Database charset to use in creating database tables. */
  60. define( 'DB_CHARSET', 'utf8' );
  61.  
  62. /** The database collate type. Don't change this if in doubt. */
  63. define( 'DB_COLLATE', '' );
  64.  
  65. /**#@+
  66.  * Authentication unique keys and salts.
  67.  *
  68.  * Change these to different unique phrases! You can generate these using
  69.  * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
  70.  *
  71.  * You can change these at any point in time to invalidate all existing cookies.
  72.  * This will force all users to have to log in again.
  73.  *
  74.  * @since 2.6.0
  75.  */
  76. define( 'AUTH_KEY',         'nackhisf4qvot3z7zkrzfqzndvevbwwzjwyvpxmccqkho1hdoo4dawz15zxa4rob' );
  77. define( 'SECURE_AUTH_KEY',  'umsrivmafknaixvn21qtf528q8cxxn9dmtba3iv9rxuebpvxywwrnjgkotmjvzfc' );
  78. define( 'LOGGED_IN_KEY',    't2gfupndhw0os1tkxphfvzdenwg4ypwst18qtzgfapo5rygaswincyt9yexjez99' );
  79. define( 'NONCE_KEY',        'nkhsqrq7pumen6mfynsxaftnigz8qwpwcljtuoyk0zsrctyy5v671abycafkyotb' );
  80. define( 'AUTH_SALT',        '59dqxuhviwxz9ktdocwgtllgcz9j4deo4oqlbecpthblmtstbrlzp0qwamwnireg' );
  81. define( 'SECURE_AUTH_SALT', 'efljmnrngnfzyv8pooyxyel8lfnb4pi1uaolehwziqffolg9pvglpdcop5ybvt2d' );
  82. define( 'LOGGED_IN_SALT',   '9gyffgown23isg1si7knbsdaigtyongplpywl4qssyyyggzo0gimpk6h6mlbpqbl' );
  83. define( 'NONCE_SALT',       'sqwmc6j9k9tvyh66mgh3ptihqv6x1my5ts92cb9pssukqxrzk00a3o9e4pcp26yy' );
  84.  
  85. /**#@-*/
  86.  
  87. /**
  88.  * WordPress database table prefix.
  89.  *
  90.  * You can have multiple installations in one database if you give each
  91.  * a unique prefix. Only numbers, letters, and underscores please!
  92.  */
  93. $table_prefix = 'wbcjs_';
  94.  
  95. /**
  96.  * For developers: WordPress debugging mode.
  97.  *
  98.  * Change this to true to enable the display of notices during development.
  99.  * It is strongly recommended that plugin and theme developers use WP_DEBUG
  100.  * in their development environments.
  101.  *
  102.  * For information on other constants that can be used for debugging,
  103.  * visit the documentation.
  104.  *
  105.  * @link https://wordpress.org/documentation/article/debugging-in-wordpress/
  106.  */
  107. /*define( 'WP_DEBUG', false );*/
  108.  
  109. /* Add any custom values between this line and the "stop editing" line. */
  110.  
  111.  
  112.  
  113. /* That's all, stop editing! Happy publishing. */
  114.  
  115. /** Absolute path to the WordPress directory. */
  116. if ( ! defined( 'ABSPATH' ) ) {
  117.     define( 'ABSPATH', __DIR__ . '/' );
  118. }
  119.  
  120. /** Sets up WordPress vars and included files. */
  121. require_once ABSPATH . 'wp-settings.php';
  122.  
  123. /* Enable debugging (deactivate this later) */
  124. define( 'WP_DEBUG', true );
  125. define( 'WP_DEBUG_LOG', true );
  126. define( 'WP_DEBUG_DISPLAY', false );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement