🌐
ROOT
/
home2
/
niceguy9
/
public_html
/
ahrmn
📤 Upload File
📁 New Folder
✏️ EDITING: wp-config.php
<?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://wordpress.org/support/article/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', 'niceguy9_WPGTE'); /** MySQL database username */ define('DB_USER', 'niceguy9_WPGTE'); /** MySQL database password */ define('DB_PASSWORD', '$2y2!?YA1aX>WOc9/'); /** MySQL hostname */ define('DB_HOST', 'localhost'); /** Database charset to use in creating database tables. */ define( 'DB_CHARSET', 'utf8' ); /** 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', '289ddc6500036c1f7e4a0411b8920e5c133cf25bde9fe66e4fdab62a9df91aea'); define('SECURE_AUTH_KEY', '4911208bc0fe223e616863030361ed20cf181911e82b63ddddcc301acb8de713'); define('LOGGED_IN_KEY', '32eb45b80bd4728b5f93f05bb5070c61044ab822592a53ceaea06890a39de584'); define('NONCE_KEY', '503f8db553bfb7fbe9c5a8528d39b7ac370e90cef3ed88b5967d9b52683e316e'); define('AUTH_SALT', '18cd265f7f0d66cb448eb336ce42bd08de209eb4576416564ac00eeb58e377ed'); define('SECURE_AUTH_SALT', '5c833b97b99163746da7c5c8ead466971b0deeef34ec00a06cbbc796a706d839'); define('LOGGED_IN_SALT', 'a098fa2ad9f560b36c00a440c47fd46772fcf69002dfd3e3f15f50b46b482d73'); define('NONCE_SALT', 'c00fe8e3474ab2cbe35e0afebab118e65e744b3ea4f3c68a738975bf420fd13c'); /**#@-*/ /** * 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 = 'Hsf_'; define('WP_CRON_LOCK_TIMEOUT', 120); define('AUTOSAVE_INTERVAL', 300); define('WP_POST_REVISIONS', 5); define('EMPTY_TRASH_DAYS', 7); define('WP_AUTO_UPDATE_CORE', true); /** * 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 documentation. * * @link https://wordpress.org/support/article/debugging-in-wordpress/ */ define( 'WP_DEBUG', false ); /* Add any custom values between this line and the "stop editing" line. */ /* That's all, stop editing! Happy publishing. */ /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', __DIR__ . '/' ); } /** Sets up WordPress vars and included files. */ require_once ABSPATH . 'wp-settings.php';
💾 SAVE CHANGES
CANCEL