Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/rcssed/public_html/ |
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', 'rcssed'); /** MySQL database username */ define('DB_USER', 'rcssedDb'); /** MySQL database password */ define('DB_PASSWORD', 'RcssedDb@2024'); /** 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', ''); define('FS_METHOD', 'direct'); /**#@+ * 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', '1a5a053879fb4176e1cf8dcbfb8ecdffa07b22e45511ae956c0b03871f3ca879'); define('SECURE_AUTH_KEY', '15e6aa2bb15b01a31b583851a300feaf5a82545cd987c3d0f8b1b99cf529b914'); define('LOGGED_IN_KEY', 'e39e31ce1d5cdd8bb10707fa69a2ec1fa0df8aa8e99a24136a8e9f6ec3cbe506'); define('NONCE_KEY', '63cd53e5d46d9f4dfe1508560eebd5c8c51bc2c1528a11b2698ffc442803a286'); define('AUTH_SALT', 'e3c10d039cfaacdaa340a39215b6c78667334f9b8b62f45863b82e9c44b25b32'); define('SECURE_AUTH_SALT', '52f89c629999b47d258ac37e1adc14c284ffe7f781d55dfd0c29d9f2ae45842e'); define('LOGGED_IN_SALT', '081d90279cbb36eeced9693bfe9649620e02c4bbbf06f971bba14b6bde31cd12'); define('NONCE_SALT', 'f7d6edd2be0c056676cf7efa9c021485479393dbb332aead42e889c8dd373f41'); /**#@-*/ /** * 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); /* That's all, stop editing! Happy blogging. */ /** * 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://localhost/wordpress'); * define('WP_SITEURL', 'http://localhost/wordpress'); * */ /** 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'); ////define('WP_TEMP_DIR', 'D:\Ronald\UST\RCSSED/apps/wordpress/tmp'); // 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 // 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' );