Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
mountainpassions
/
winter
📤 Upload
📝 New File
📁 New Folder
Close
Editing: wp-config.php
<?php //Begin Really Simple SSL session cookie settings @ini_set('session.cookie_httponly', true); @ini_set('session.cookie_secure', true); @ini_set('session.use_only_cookies', true); //END Really Simple SSL cookie settings /** * The base configurations of the WordPress. * * This file has the following configurations: MySQL settings, Table Prefix, * Secret Keys, WordPress Language, and ABSPATH. You can find more information * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing * wp-config.php} Codex page. You can get the MySQL settings from your web host. * * This file is used by the wp-config.php creation script during the * installation. You don't have to use the web site, you can just copy this file * to "wp-config.php" and fill in the values. * * @package WordPress */ // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define('DB_NAME', 'hoozgotmtnpas'); /** MySQL database username */ define('DB_USER', 'hoozgotmtnpas'); /** MySQL database password */ define('DB_PASSWORD', 'mY75B957Yb2a'); /** MySQL hostname */ define('DB_HOST', 'hoozgotmtnpas.mysql.db'); /** 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', '`1QW^&=*0Zp>#YTkIFb64.je)b|zw6[eyeizpu@qwwnZuS_x.|u`]Z~SG)_A#HTe'); define('SECURE_AUTH_KEY', 'opG<zY`odnCl5U}!(DtL)L#EvJc>0;O5_-H7:~1csQ+MP2HMH(!D;rPFRO_f|~XW'); define('LOGGED_IN_KEY', '6z{H[+OrrR%|2?z%^XY`1$3Ko|*H?#$M8TLWIQQ*drUw/9%bnAh+D|Fx3^hkL.6h'); define('NONCE_KEY', 'H/ Y24lyzTnaZwS9W!TT59.?dQvjm7s|u=q&,NiEA>;t,MBYD+]Cj8b-e3!1!%3f'); define('AUTH_SALT', '+X+uh 2g2.|+e{:t|ta&)pZ.u,-PU-|32v Ef~9j%>==oN*xpBq+a?<ZB6|FDc+k'); define('SECURE_AUTH_SALT', 'UOO.m=<I=+4e?,X<@H7{-ln92itA-`m1vA2>)2{7R-rhM=#4!yC?+,n8&%m2nhGr'); define('LOGGED_IN_SALT', ') g=|bwE,-a+C[^&e5M6Sr50 p5q_dL8ZiZhxMMLf,|e-jFGF>mJj@Mf;tR{Fcx'); define('NONCE_SALT', 's@^:/~]+7sHKC=:9[iyP)/HcyNypcC+Q@=c|H,n;|qv$qQZt-@zjQkBd5m N/*l0'); /**#@-*/ /** * 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_'; /** * WordPress Localized Language, defaults to English. * * Change this to localize WordPress. A corresponding MO file for the chosen * language must be installed to wp-content/languages. For example, install * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German * language support. */ define('WPLANG', ''); /** * 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. */ define( 'WP_DEBUG', true ); define( 'WP_DEBUG_DISPLAY', false ); define( 'WP_DEBUG_LOG', true ); define('WP_CACHE', true); /** *Connection parameters REDIS persistent object caching define( 'WP_REDIS_HOST', '127.0.0.1' ); define( 'WP_REDIS_PORT', 6379 ); // define( 'WP_REDIS_PASSWORD', 'secret' ); define( 'WP_REDIS_TIMEOUT', 1 ); define( 'WP_REDIS_READ_TIMEOUT', 1 ); // change the database for each site to avoid cache collisions // values 0-15 are valid in a default redis config. define( 'WP_REDIS_DATABASE', 0 ); // supported clients: `phpredis`, `credis`, `predis` and `hhvm` // define( 'WP_REDIS_CLIENT', 'phpredis' ); // automatically delete cache keys after 7 days // define( 'WP_REDIS_MAXTTL', 60 * 60 * 24 * 7 ); // bypass the object cache, useful for debugging // define( 'WP_REDIS_DISABLED', true ); */ /** 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'); /** Force SSL/HTTPS in Wordpress admin area. */ define('FORCE_SSL_ADMIN', true); /* That's all, stop editing! Happy blogging. */
Save
Cancel