| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/coopermain_2/ |
Upload File : |
<?php
define('WP_CACHE', true); // Added by WP Rocket
/**
* NOTE: ensure you have run composer to install necessary packages
*/
require_once ABSPATH . 'wp-content/themes/cooper/vendor/autoload.php';
// set up environment variables
$dotenv = Dotenv\Dotenv::create(ABSPATH);
$dotenv->load();
$dotenv->required(['DB_HOST', 'DB_NAME', 'DB_USER', 'DB_PASSWORD'])->notEmpty();
// DB Config
//---------------------------------
define('DB_HOST', getenv('DB_HOST'));
define('DB_NAME', getenv('DB_NAME'));
define('DB_USER', getenv('DB_USER'));
define('DB_PASSWORD', getenv('DB_PASSWORD'));
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define('DB_PREFIX', getenv('DB_PREFIX'));
$table_prefix = DB_PREFIX;
// Debug Config
//---------------------------------
define('APP_ENV', (string)getenv('APP_ENV'));
define('WP_DEBUG', (bool)(int)getenv('WP_DEBUG'));
define('WP_DEBUG_DISPLAY', (bool)(int)getenv('WP_DEBUG_DISPLAY'));
define('WP_DEBUG_LOG', (bool)(int)getenv('WP_DEBUG_LOG'));
// Logging
//---------------------------------
define('ERROR_EMAIL', getenv('ERROR_EMAIL'));
define('LOG_FILE_NAME', getenv('LOG_FILE_NAME'));
define('LOG_DB', (bool)(int)getenv('LOG_DB'));
define('LOG_DB_NAME', getenv('LOG_DB_NAME'));
// set up outputting of nice displaying of errors - https://github.com/filp/whoops
if (class_exists('\Whoops\Run') && defined('APP_ENV') && APP_ENV === 'local') {
$whoops = new \Whoops\Run;
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
$whoops->register();
}
// Sentry Config
//---------------------------------
define( 'WP_SENTRY_PHP_DSN', 'https://4e2ec8bd96e443049824a9c0af1998dd@watcher.burger.net.au/26' );
define( 'WP_SENTRY_SEND_DEFAULT_PII', false );
define( 'WP_SENTRY_ERROR_TYPES', E_ALL & ~E_NOTICE & ~E_USER_NOTICE & ~E_DEPRECATED );
define( 'WP_SENTRY_ENV', APP_ENV );
/**#@+
* 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', 'UfLEVxv_;WmSPBeZp0Q%MiG8t.:Z;wca)+(h2]%0|wxOrRc8k>$#Pj#h&E(+!gNJ');
define('SECURE_AUTH_KEY', ',*<`mT7hus|v[`O&/IhLl?e&Kkvc@I:Kab)GhZhAgTyp}Mpe`+usBOM:/6+C%f&-');
define('LOGGED_IN_KEY', 'G/YPDw(r+f-5EdP@qj:e/<~dt*p%RB9+R} 9Z6+[+l,4[,6C/o,pGpy4xD8(`#t');
define('NONCE_KEY', '8&2eO=o=}<x:oT#AET;,=;*uRek*[]F5-K,BP.9i.&W3reyjZ1c;Hv.2~-5eZ7w^');
define('AUTH_SALT', '3Y//.g?P*z$J@%> Ghh. /+h7sH!g!SM[~`];:Hw~W.A>(!{y0,/9u-o=we,O$~P');
define('SECURE_AUTH_SALT', '7NV#+*+R%zG#W}%+jg@peMjhOqAUU@zXH2}-A*7Qo2}UO`@i+uT1|^My^UTfZyD}');
define('LOGGED_IN_SALT', '>(-$J0<#+&-VTdutxh/e&!u`x+tGBofU}-U3-=Zye|x)&d7DO5|MsddG61.+r}N*');
define('NONCE_SALT', 's*c x!s=;9/ZSAkc4+91-%:!v(=Tu8#GJ |+q) dV0[@;ULAp+6Y-A<NH8HhC|S');
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if (!defined('ABSPATH')) {
define('ABSPATH', dirname(__FILE__) . '/');
}
/** Sets up WordPress vars and included files. */
define('ALLOW_UNFILTERED_UPLOADS', true);
require_once(ABSPATH . 'wp-settings.php');
define('DISALLOW_FILE_EDIT', true);