<?php
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the
* installation. You don't have to use the web site, you can
* copy this file to "wp-config.php" and fill in the values.
*
* This file contains the following configurations:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://codex.wordpress.org/Editing_wp-config.php
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', "kiwigrass");
/** MySQL database username */
define('DB_USER', "root");
/** MySQL database password */
define('DB_PASSWORD', "Homesc00l/");
/** MySQL hostname */
define('DB_HOST', "localhost");
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8mb4');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* 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.
*
* @since 2.6.0
*/
define('AUTH_KEY', 'gg-:/S8<eptB|2bjE!Lr=RV&w5?GXNf78Na^y2x QB:=@ tBf*PD[ZdX6&QafbJ-');
define('SECURE_AUTH_KEY', 'TJD-wxS?)d#_**(aXRq!wAcS#$Z7&+*f$.<nx7K}})^G^n;O|x{17S^ )aC(J?[5');
define('LOGGED_IN_KEY', '|O7`)gJ8om2bBS^,g}:`D(D6{do$pK`3%{_7(Vccicj9|JFpB{mLy1+Q-;@7MG|g');
define('NONCE_KEY', '?RW0^[J2{y?^EstS&#]<5l]-+88sDT8^Hd|t{Mk~^j[fwH~d_OH1mH,AhAVn>PaI');
define('AUTH_SALT', '@/?bMG] fn|tJ`@(gUDo_vsY9q+@K9Q<gERup,I}en7sK%KLgCoo}ca,$V7FBHss');
define('SECURE_AUTH_SALT', 'QzOFRt8qrW8v4`NB+D4FvhCYSpcL;d#zPM6dfjC*&BF%bPDV=B(7Y=k4ZF=ehRh%');
define('LOGGED_IN_SALT', 'LfGtMFtjaMnjG2q~]dV<o93B!2_MQQT{yh+%?&LNMmb/`)^YLjmaNH.e,R(!5,@M');
define('NONCE_SALT', ';=@`khg37i.)MNQZD#&C~S`T+S#UI.IiS`:Xp^Xmmp~JH|UAIvAs~~1LP;dTY$w[');
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the Codex.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
define( 'WP_DEBUG', false );
define( 'WP_SITEURL', 'http://www.kiwigrass.nz/' );
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php'); |