<?php
/**
* The base configuration for WordPress
*/
// ** Database settings ** //
define( 'DB_NAME', 'c33aps1' );
define( 'DB_USER', 'c33aps1' ); // Replace with username from Step 1
define( 'DB_PASSWORD', 'ad12fsfsfsjk833Fa' ); // Replace with password from Step 2
define( 'DB_HOST', 'localhost' ); // Usually 'localhost', but check with your host
define( 'DB_CHARSET', 'utf8mb4' );
define( 'DB_COLLATE', '' );
/**
* Authentication unique keys and salts
* Generate new ones at: https://api.wordpress.org/secret-key/1.1/salt/
*/
define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
define('AUTH_SALT', 'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT', 'put your unique phrase here');
define('NONCE_SALT', 'put your unique phrase here');
/**
* WordPress database table prefix
*/
$table_prefix = 'wp_'; // If you used a different prefix, adjust this
/**
* For developers: WordPress debugging mode
*/
define( 'WP_DEBUG', false );
/* That's all, stop editing! Happy publishing. */
/** 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';