| Server IP : 52.25.153.185 / Your IP : 216.73.217.131 Web Server : Apache System : Linux ip-172-26-6-158 5.10.0-35-cloud-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64 User : daemon ( 1) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /home/bitnami/stack/wordpress/ |
Upload File : |
<?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:
*
* * Database settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://wordpress.org/support/article/editing-wp-config-php/
*
* @package WordPress
*/
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'bitnami_wordpress' );
/** Database username */
define( 'DB_USER', 'bn_wordpress' );
/** Database password */
define( 'DB_PASSWORD', 'c605b8c7915244900eceec5d0aeeb1432788a468fdb8dd741c21291149d0fa7a' );
/** Database hostname */
define( 'DB_HOST', '127.0.0.1:3306' );
/** 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', 'Q4_Qu+A#AN)xjzz^{lEENbh&Mr`4ynDwfb+R?8eDl<~(`pi-7)[rQ`+Xy8>?b=Uk' );
define( 'SECURE_AUTH_KEY', 'O6ec*;B$.+E`Qt$(sq!MeBce$LGP*wx)@cnvbP%Yt9NavMw~|u/bv=J!olk9xdpB' );
define( 'LOGGED_IN_KEY', 'KwkR$mvRVMLRB`swoHNAIYv6*UK>vl~(R|?tE7zN8-Df<l#Wqe2&x<+2#4|HJ' );
define( 'NONCE_KEY', '{qdUX<)vJyOwOd<G^NMG`2L_@cI?Mdd`-TKk+*EyzXhoK/kep[V6x=y?)6=yt}=l' );
define( 'AUTH_SALT', '.$zM]Nj3;(3;m4#-pU#945.ri9vW_!q=B8Z&YW}FZ-}B$LfWg,&zjm}FS4N0BisL' );
define( 'SECURE_AUTH_SALT', '2L+-/nOPJb 4=dol]g0MSB?4i0HlzFx;:s.7fCvn$L4v$>MQoXgR{,)IV*UdoBa`' );
define( 'LOGGED_IN_SALT', '>$&8cEC*ZCutaW$;`{?.0a Ot!OdM+Y!y 6ph!&ww8mnsWkxa;`KPDJrjt&r&M%}' );
define( 'NONCE_SALT', '3wW`Y>ED`X7ja??H)o2vm+C+RZ/MvEkyRh{T$sj$)m@3f{CB>|;^lE0~tQ=gM&bZ' );
/**#@-*/
/**
* 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 = 'lBCGYHIg_';
/**
* 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 );
define('RFFI_DEBUG', false);
define('COOKIE_DOMAIN', 'avenuewest.com');
define('WP_CACHE', true);
define('DISALLOW_FILE_EDIT', false);
define('DISALLOW_FILE_MODS', false);
/* Add any custom values between this line and the "stop editing" line. */
define( 'FS_METHOD', 'direct' );
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define('WP_ALLOW_MULTISITE', true);
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', true);
$base = '/';
define('DOMAIN_CURRENT_SITE', 'avenuewest.com');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
define('RENTALL_TICKETS_API_KEY', 'OpTCmPTl9GzAcis2Yn7XXn8m4QhkQrBMBAt8DE+LzC+N4BmKJu17pMyxC0XTNwtR');
define('RENTALL_LEADS_API_KEY', 'ILOH9vjA6NiYYM4B5xfL/akO65AxASrtuoP8gv2KOTnl5ggfNyDNvEB2Mwm3YuG0Ox4OyU+uYcYz7+mF1sd1pw');
/* 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';
/**
* Disable pingback.ping xmlrpc method to prevent WordPress from participating in DDoS attacks
* More info at: https://docs.bitnami.com/general/apps/wordpress/troubleshooting/xmlrpc-and-pingback/
*/
if ( !defined( 'WP_CLI' ) ) {
// remove x-pingback HTTP header
add_filter("wp_headers", function($headers) {
unset($headers["X-Pingback"]);
return $headers;
});
// disable pingbacks
add_filter( "xmlrpc_methods", function( $methods ) {
unset( $methods["pingback.ping"] );
return $methods;
});
}