| Server IP : 65.1.209.187 / Your IP : 216.73.216.144 Web Server : nginx/1.24.0 System : Linux ip-172-31-5-206 6.14.0-1015-aws #15~24.04.1-Ubuntu SMP Tue Sep 23 22:44:48 UTC 2025 x86_64 User : ( 1001) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/ttc_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 website, 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://developer.wordpress.org/advanced-administration/wordpress/wp-config/
*
* @package WordPress
*/
require_once __DIR__ . '/vendor/autoload.php';
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->load();
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', $_ENV['DB_NAME']);
/** Database username */
define( 'DB_USER', $_ENV['DB_USER']);
/** Database password */
define( 'DB_PASSWORD', $_ENV['DB_PASSWORD']);
/** Database hostname */
define( 'DB_HOST', $_ENV['DB_HOST']);
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8mb4' );
/** 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', 'WZw/R,nRe$h!T9* huMp^.=a}~5-XLY$~7<kZG>rFu>$;QnetS40V128zb+Z*{-~' );
define( 'SECURE_AUTH_KEY', 'ZtIN13:75F{Z 34C/-_0ygjsvx+zl:f7jdDrIiBm6F}fYkdBJf!jr*WpG/J~pW&x' );
define( 'LOGGED_IN_KEY', 'pnM43z#qh}Ci,7k/`c;J1_?<?zusjP*/]0u E_)RkZ1PA%`HaC#e01sWioSdZ=|<' );
define( 'NONCE_KEY', 'e>{|!oB9?}zq%=Ue&m|EqkQJZtl|kR*?|<o<9SE4b]{=%wCk!]a.WsKmg.a+[$#D' );
define( 'AUTH_SALT', 'd$8<;:+_y{/_|>!Nl,]xjJy)0Aj{Wpys~71A~qu~dW-JJv7fU&BeFk$pw6F=NRO1' );
define( 'SECURE_AUTH_SALT', '|Nu<~G{y?5h:qwK5~u5{S5eO2:lr$uQyqVMJJOZSMgw[sf8~Wl)s12xp OkOetL0' );
define( 'LOGGED_IN_SALT', '+USw8!9_k[0ibYx-p!!F_thf1%U,/YcI^!Gs+B-[(hRx39$IP.4LjLkQDsLT3+r3' );
define( 'NONCE_SALT', '/gl|g?,2LU7|%>^>,zM:-^a^#z*G^w nM%%(EKC2mIOtSyOys ^*Ssg@pr4x,s+P' );
/**#@-*/
/**
* 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 = 'wpb_';
/**
* 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://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
*/
define('WP_DEBUG', false);
define('WP_DEBUG_LOG', false);
define('WP_DEBUG_DISPLAY', false);
/* Add any custom values between this line and the "stop editing" line. */
@ini_set('upload_max_size', '2000M');
@ini_set('post_max_size', '2000M');
@ini_set('max_execution_time', '900');
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
define( 'RAZORPAY_KEY_ID', $_ENV['RAZORPAY_KEY_ID']);
define( 'RAZORPAY_KEY_SECRET', $_ENV['RAZORPAY_KEY_SECRET']);
define( 'RAZORPAY_COLOR', $_ENV['RAZORPAY_COLOR']);
define( 'RAZORPAY_CURRENCY', $_ENV['RAZORPAY_CURRENCY']);
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';