<?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', "rhodeworks");
/** 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', 'ZQ-t[cR-|YlB1brtel,m-vt%*0c@<@3t/av,%6mk+F7.^E%s4Q5@R=e^2a6e1U-M');
define('SECURE_AUTH_KEY', 'fZ4OmoqE1^sYa(?mnr*%-D20o]+ee+ f@uJdcQ(2H3xjhJ}s^dPl z,+t>`11CZg');
define('LOGGED_IN_KEY', 'fXR7+zpfI++9om]7>;/`(GIY[bh#/@%ESsz;i&M&i}i,<t8-8Jk%K}wY@Kz3*C$X');
define('NONCE_KEY', 'V}K4.j>.4:_GP132J9&(Omn16F,2p1Y<qDu6j?Cdn))]sw6&,CW9i$[EYHj2SSyf');
define('AUTH_SALT', 'N>4G/;-bLUfhZhPPss6W{~$ZB3ywq7ADqIpUosyu|/zOD!TZ<,XAmqPA5c5#/P<.');
define('SECURE_AUTH_SALT', 'XM{:F*t9m-q1v.A8Qk[1[;B`!$5.k;f kCMwAIhB=mEvWIi[H<7SM+K~SF~{MEWP');
define('LOGGED_IN_SALT', 'GDt<)Z*s$0zm5JIu+G5}S8BL=EwAgo!o.V6>jqwkg]On5QDf?%Sc^;w.5w7d.{*e');
define('NONCE_SALT', '<Wv&/{PvTL(hq]cw4yR~]?gF@t?S4[O2%Osxv<N/mBV;+]{kK%~;!j,lPfFf)O%F');
/**#@-*/
/**
* 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://rhodeworks.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');
|