wordpress/wordpress-db-config

12 lines
461 B
Plaintext

<?php
// ** MySQL settings ** //
define('BBDB_NAME', 'bbpress'); // The name of the database
define('BBDB_USER', 'username'); // Your MySQL username
define('BBDB_PASSWORD', 'password'); // ...and password
define('BBDB_HOST', 'localhost'); // 99% chance you won't need to change this value
// Change the prefix if you want to have multiple forums in a single database.
$bb_table_prefix = 'bb_'; // Only letters, numbers and underscores please!
?>