· 4 years ago · Jun 15, 2021, 03:50 PM
1
2text/x-generic wp-config.php ( PHP script, ASCII text )
3
4<?php
5define( 'WP_CACHE', true );
6/**
7 * The base configuration for WordPress
8 *
9 * The wp-config.php creation script uses this file during the
10 * installation. You don't have to use the web site, you can
11 * copy this file to "wp-config.php" and fill in the values.
12 *
13 * This file contains the following configurations:
14 *
15 * * MySQL settings
16 * * Secret keys
17 * * Database table prefix
18 * * ABSPATH
19 *
20 * @link https://wordpress.org/support/article/editing-wp-config-php/
21 *
22 * @package WordPress
23 */
24
25// ** MySQL settings - You can get this info from your web host ** //
26/** The name of the database for WordPress */
27define( 'DB_NAME', 'trinetra_wp430' );
28
29/** MySQL database username */
30define( 'DB_USER', 'trinetra_wp430' );
31
32/** MySQL database password */
33define( 'DB_PASSWORD', '*********' );
34
35/** MySQL hostname */
36define( 'DB_HOST', 'localhost' );
37
38/** Database Charset to use in creating database tables. */
39define( 'DB_CHARSET', 'utf8mb4' );
40
41/** The Database Collate type. Don't change this if in doubt. */
42define( 'DB_COLLATE', '' );
43
44/**#@+
45 * Authentication Unique Keys and Salts.
46 *
47 * Change these to different unique phrases!
48 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
49 * 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.
50 *
51 * @since 2.6.0
52 */
53define( 'AUTH_KEY', '96p0oofvlto4bxbhv7kfl96ressk4x5vfs4rzsakjpeffvn5phyel1ukzbxwgr8s' );
54define( 'SECURE_AUTH_KEY', '5zpq6yykowezjevqppd8ssgkvdrwlxn9pttuipbzmmxicb9yc1xjwzvutg6sjbcf' );
55define( 'LOGGED_IN_KEY', 'zhhderpldyr5s8irqmgrgqmlauq3ijtl09ctvpugr3edjbdr2iwdr4htoxrjcdr2' );
56define( 'NONCE_KEY', 'ggegu4lscqlycgfua7kzn3cnub5wdfbazeqj5eisyvddqokcjewtr7cc12xomyui' );
57define( 'AUTH_SALT', 'pumdo054jerpoatkgm7gmickj9pclfrvqxtebausygiz9h5bzxnaeog4gj7eu7te' );
58define( 'SECURE_AUTH_SALT', '4lyfvhft2wjvgca1ywp1ccesbm6jn1ddhgcjo0fl14kuibu8xca4mxxuzizmk0vd' );
59define( 'LOGGED_IN_SALT', '58chcr7aau6mnyglli3i8grzflv7fim5h8j6sbliw05iktkmlhkzrbmpaa5kqxwr' );
60define( 'NONCE_SALT', 'qkdt6utfca5dlvombnwurccrbhhht1wznyprecdtatnbp8harlns03ik9nexlmdv' );
61
62/**#@-*/
63
64/**
65 * WordPress Database Table prefix.
66 *
67 * You can have multiple installations in one database if you give each
68 * a unique prefix. Only numbers, letters, and underscores please!
69 */
70$table_prefix = 'wpvo_';
71
72/**
73 * For developers: WordPress debugging mode.
74 *
75 * Change this to true to enable the display of notices during development.
76 * It is strongly recommended that plugin and theme developers use WP_DEBUG
77 * in their development environments.
78 *
79 * For information on other constants that can be used for debugging,
80 * visit the documentation.
81 *
82 * @link https://wordpress.org/support/article/debugging-in-wordpress/
83 */
84define( 'WP_DEBUG', false );
85
86/* That's all, stop editing! Happy publishing. */
87
88/** Absolute path to the WordPress directory. */
89if ( ! defined( 'ABSPATH' ) ) {
90 define( 'ABSPATH', __DIR__ . '/' );
91}
92
93/** Sets up WordPress vars and included files. */
94require_once ABSPATH . 'wp-settings.php';
95
96