· 7 years ago · Jul 18, 2018, 02:26 PM
1<?php
2
3/**
4 * The base configuration for WordPress
5 *
6 * The wp-config.php creation script uses this file during the
7 * installation. You don't have to use the web site, you can
8 * copy this file to "wp-config.php" and fill in the values.
9 *
10 * This file contains the following configurations:
11 *
12 * * MySQL settings
13 * * Secret keys
14 * * Database table prefix
15 * * ABSPATH
16 *
17 * @link https://codex.wordpress.org/Editing_wp-config.php
18 *
19 * @package WordPress
20 */
21
22/** Temporary
23define('WP_HOME','http://.co.uk');
24define('WP_SITEURL','http://.co.uk'); **/
25
26// ** MySQL settings - You can get this info from your web host ** //
27/** The name of the database for WordPress */
28define('DB_NAME', '');
29
30/** MySQL database username */
31define('DB_USER', '');
32
33/** MySQL database password */
34define('DB_PASSWORD', '');
35
36/** MySQL hostname */
37define('DB_HOST', 'localhost');
38
39/** Database Charset to use in creating database tables. */
40define('DB_CHARSET', 'utf8mb4');
41
42/** The Database Collate type. Don't change this if in doubt. */
43define('DB_COLLATE', '');
44
45/**#@+
46 * Authentication Unique Keys and Salts.
47 *
48 * Change these to different unique phrases!
49 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
50 * 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.
51 *
52 * @since 2.6.0
53 */
54define('AUTH_KEY', ';&=@dNU`bt#B )V=d8:u(g`Zgr69yR$(e|&Va%A1Ua2asdfaefawefwIO)YY^^yU');
55define('SECURE_AUTH_KEY', '<GwK2;BlR0?6!T9X2~* 4DVasdfasdfsadfsab>pe#,%8C2J;te(xAB2NrV>(>u3');
56define('LOGGED_IN_KEY', 'fsXYp0hgQ@@kj>]8olnC/Vv&E0z]!qYfVprG`&G_21KJDc30easdQg=]X|??%y;k');
57define('NONCE_KEY', 'fg)B#PUOJKwP&RJ{i:jR@asdfasdfabMv~b_o$k**47(B>R=&7fg_Y<iISf%]OG@');
58define('AUTH_SALT', ']H.P0i,`YTD-^&CX/x0p4:oodJasdfasdfasdfsadfasdfasdfas2h] ShNd7Z 4');
59define('SECURE_AUTH_SALT', ' r.xJDmmOsrYXB753SSi6N`~~iaasdfasdfasdfafsa~8CzRY~v]d46w-*h6EwH,');
60define('LOGGED_IN_SALT', ',Fuxy`X! h[<vX+e0c]CMcStasdfsafdsadfsafdF@d5V*t=A:BQNwk~K#i .!Ga');
61define('NONCE_SALT', 'QsKJ=_6(C_jvk5GC&)fS[8F`/8zZvasdfasdfasdfaau^vmo@M V%PYNs.[B3DKM');
62
63/**#@-*/
64
65/**
66 * WordPress Database Table prefix.
67 *
68 * You can have multiple installations in one database if you give each
69 * a unique prefix. Only numbers, letters, and underscores please!
70 */
71$table_prefix = 'wp_';
72
73/**
74 * For developers: WordPress debugging mode.
75 *
76 * Change this to true to enable the display of notices during development.
77 * It is strongly recommended that plugin and theme developers use WP_DEBUG
78 * in their development environments.
79 *
80 * For information on other constants that can be used for debugging,
81 * visit the Codex.
82 *
83 * @link https://codex.wordpress.org/Debugging_in_WordPress
84 */
85define('WP_DEBUG', false);
86
87/* That's all, stop editing! Happy blogging. */
88
89/** Absolute path to the WordPress directory. */
90if ( !defined('ABSPATH') )
91 define('ABSPATH', dirname(__FILE__) . '/');
92
93/** Sets up WordPress vars and included files. */
94require_once(ABSPATH . 'wp-settings.php');