Server IP : 3.128.248.115 / Your IP : 3.149.243.86 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ip-172-31-33-233 5.15.0-1037-aws #41~20.04.1-Ubuntu SMP Mon May 22 18:18:00 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.28 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/checkeligibility.org/ |
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: * * * MySQL settings * * Secret keys * * Database table prefix * * ABSPATH * * @link https://codex.wordpress.org/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', 'checkeligibility.org'); /** MySQL database username */ define('DB_USER', 'wordpress'); /** MySQL database password */ define('DB_PASSWORD', '&ARt#nDf*kch0Cr9zpbOK9z&FHg72yG7'); /** 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', 'j$j|s[5LNnX][B/DjG+S:{20P`X$7`7|vK$/C@MZh_X]bM~@_4b`4w=Z8Mwb7=Cy'); define('SECURE_AUTH_KEY', '5M<md;+@JDn?PZM=e8UU|$OsLke9z+lVgh`6x^sv}Pe>QPdSRh[M$44.>3xGb*pQ'); define('LOGGED_IN_KEY', '7N*y*@-FcX!q3{pi#)d#m-a|K(CG<QEm-SJX* })p={1Np]S,P#}ia*[:`z9@BBX'); define('NONCE_KEY', 'w7t&%43|WEUa32/Ee&|S]-Q4Uf>6<*4#0?w63-.!O|cSNY^uYRe7q5mRrz83HI_['); define('AUTH_SALT', 'cCtgbNa{1]Ph:WnKReP|sbX0DSg,sCxI4C!6&!ybz7fSi)ty%..In=J^RNtn>:#_'); define('SECURE_AUTH_SALT', '$LS-Q~|(XO/r,nbQE_Z_E< )[1C<mn~CY.rKF=)^`TkDld,u.gtT6DWzE;WuKZk|'); define('LOGGED_IN_SALT', 'nC~qux79cQ9=32X6itH@B[(.J88h:Q{Is-jkNtivVNg/<PQ6wzQ2etz5WM>F=m)k'); define('NONCE_SALT', 'w# *8m|N(}{g~wZvVIw_=PZbW/C{TD&$6M6N-Js 1rb9gPzez8Hv;<`;Z;HS+PSJ'); /**#@-*/ /** * 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_'; /** * 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 Codex. * * @link https://codex.wordpress.org/Debugging_in_WordPress */ define('WP_DEBUG', false); /** Amazon Certificate Redirection by Load Balancer */ if (strpos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false) $_SERVER['HTTPS']='on'; /* That's all, stop editing! Happy blogging. */ define('FS_METHOD', 'direct'); /** * The WP_SITEURL and WP_HOME options are configured to access from any hostname or IP address. * If you want to access only from an specific domain, you can modify them. For example: * define('WP_HOME','http://example.com'); * define('WP_SITEURL','http://example.com'); * */ if ( defined( 'WP_CLI' ) ) { $_SERVER['HTTP_HOST'] = 'localhost'; } define('WP_SITEURL', 'https://' . $_SERVER['HTTP_HOST'] . '/'); define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST'] . '/'); /** 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'); // Disable pingback.ping xmlrpc method to prevent Wordpress from participating in DDoS attacks // More info at: https://docs.bitnami.com/?page=apps&name=wordpress§ion=how-to-re-enable-the-xml-rpc-pingback-feature 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; }); add_filter( 'auto_update_translation', '__return_false' ); }