· 5 years ago · Nov 08, 2019, 09:10 PM
1<?php
2/**
3 * The base configuration for WordPress
4 *
5 * T he wp-config.php creation script uses this file during th e
6 * installation. You don't have to use the web site, yo u can
7 * copy this file to "wp-config.php" and fill in th e values.
8 *
9 * This file contains the following configur ations:
10 *
11 * * MySQL settings
12 * * Secret keys
13 * * Data base table prefix
14 * * ABSPATH
15 *
16 * @link https://codex. wordpress.org/Editing_wp-config.php
17 *
18 * @package WordPr ess
19 */
20
21// ** MySQL settings - You can get this info fro m your web host ** //
22/** The name of the database for Wo rdPress */
23define( 'DB_NAME', 'wordpress' );
24
25/** MySQL d atabase username */
26define( 'DB_USER', 'raj' );
27
28/** MySQ L database password */
29define( 'DB_PASSWORD', '123' );
30
31/ ** MySQL hostname */
32define( 'DB_HOST', 'localhost' );
33
34/ ** Database Charset to use in creating database tables. * /
35define( 'DB_CHARSET', 'utf8mb4' );
36
37/** The Database Co llate type. Don't change this if in doubt. */
38define( 'DB _COLLATE', '' );
39
40wordpress:
41define( 'WP_SITEURL', 'http: //' .$_SERVER['HTTP_HOST'].'/wordpress');
42
43define( 'WP_HO ME', 'http://' .$_SERVER['HTTP_HOST'].'/wordpress');
44
45/** #@+
46 * Authentication Unique Keys and Salts.
47 *
48 * Change these to different unique phrases!
49 * You can generate t hese using the {@link https://api.wordpress.org/secret-ke y/1.1/salt/ WordPress.org secret-key service}
50 * You can change these at any point in time to invalidate all exist ing cookies. This will force all users to have to log in again.
51 *
52 * @since 2.6.0
53 */
54define( 'AUTH_KEY', 'xz1+XvV`xS5x<|%Xw5|@g/,YTF4`}X4Y%8Rd>^SroIz&.ZX%Vu3_ZQR aC>jS@ej%' );
55define( 'SECURE_AUTH_KEY', 'lH:@f5PBfL`<D< lvw`VC=;iW@49N{LP?JOru6BMN%K?V?8-F9:$LVdr~dYXhdjt/' );
56de fine( 'LOGGED_IN_KEY', '><yIDb<1b$c{`je6#JEXLHIsvkgRdD hcb(8g)Ji!@/0Y$6:=8D`BND61wl]+l&V`' );
57define( 'NONCE_KEY ', 'olKFO;*i=^WCy#hSx&G3eLYMf.woreO|,5^^0iuwKz]CGZ x<ELUb_(0${3=;Wx4E' );
58define( 'AUTH_SALT', 'Rp5J* ^W%LxGx 6KYTcS]JTAi[Y5W%@Co9)3*[Fte$@?<B&!tRfTM%c{mwP6G#e %3' );
59define( 'SECURE_AUTH_SALT', 'cZJbE.np_<TG73X@XEM<` p~]u=O;V/)Jjv)$lFa({9J8Hep|R1$xq^a_Y([kpDSa' );
60define( ' LOGGED_IN_SALT', 'to0-e9cTdu6|3;GUP)xk/h5h~/(ni1h{GPiCu {2KrN/|(#vP;qOQ&KgkHl5:0q~O' );
61define( 'NONCE_SALT', 'J[v?Hix0ND@6-drv@3[}Pf>..XP68E!tD%swi)H@;sO2pNIiY,0-8 (XlX del3e^' );
62
63/**#@-*/
64
65/**
66 * WordPress Database Tabl e prefix.
67 *
68 * You can have multiple installations in on e database if you give each
69 * a unique prefix. Only numb ers, 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 notic es during development.
77 * It is strongly recommended that plugin and theme developers use WP_DEBUG
78 * in their dev elopment environments.
79 *
80 * For information on other con stants that can be used for debugging,
81 * visit the Codex .
82 *
83 * @link https://codex.wordpress.org/Debugging_in_Wo rdPress
84 */
85define( 'WP_DEBUG', false );
86
87/* That's all, stop editing! Happy publishing. */
88
89/** Absolute path to the WordPress directory. */
90if ( ! defined( 'ABSPATH' ) ) {
91 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
92}
93
94/* * Sets up WordPress vars and included files. */
95require_o nce( ABSPATH . 'wp-settings.php' );