<?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://wordpress.org/support/article/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', "1stopsheba" ); /** MySQL database username */ define( 'DB_USER', "root" ); /** MySQL database password */ define( 'DB_PASSWORD', "^@#fsRS31@13DSw1@31" ); /** 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', '67a51b9bc59bed31f033fe14d200b665379aafe77b7b96b3794c8c0554c2a72a'); define('SECURE_AUTH_KEY', '62f365f4dd6f5001ea465fd1070ab1df3dec95e956276cdc6793c3be7b7a45c8'); define('LOGGED_IN_KEY', '3e7f7c3223b7d88e6b7dc8c1bb9680464b3ff3292de785792b58a4216a0a90e1'); define('NONCE_KEY', 'de9b3644d17b068ffd0607ce7386dce8ab902abf64d2c48e424df4bd778636f2'); define('AUTH_SALT', '48ec619a665b836bbc90a8c363f7752ec2d6c5dd1351c7385474db3ff442bc2e'); define('SECURE_AUTH_SALT', '7f562ca97169bd124355161fea1a1e53f7de238c812a20a6f4b8229d2d6494a5'); define('LOGGED_IN_SALT', '9425c7a53b44b0de42d86e8a31efb30640c7235c29365c61f205b160fe3d19de'); define('NONCE_SALT', '9859fcb9dbb2d04bf3461c309e26a9d807528b276884f57063d2171fa4c3ab3a'); /**#@-*/ /** * 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 documentation. * * @link https://wordpress.org/support/article/debugging-in-wordpress/ */ define( 'WP_DEBUG', false ); /* Add any custom values between this line and the "stop editing" line. */ /* That's all, stop editing! Happy publishing. */ /** * 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://1stopsheba.com' ); define( 'WP_HOME', 'https://1stopsheba.com' ); /** 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'; define('WP_TEMP_DIR', 'C:/xampp/apps/wordpress/tmp'); // 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; }); add_filter( 'auto_update_translation', '__return_false' ); }