You are on page 1of 1

<?

php
/**
* Custom WordPress configurations on "wp-config.php" file.
*
* This file has the following configurations: MySQL settings, Table Prefix, Sec
ret Keys, WordPress Language, ABSPATH and more.
* For more information visit {@link https://codex.wordpress.org/Editing_wp-conf
ig.php Editing wp-config.php} Codex page.
* Created using {@link http://generatewp.com/wp-config/ wp-config.php File Gene
rator} on GenerateWP.com.
*
* @package WordPress
* @generator GenerateWP.com
*/
/* MySQL settings */
define( 'DB_NAME',
define( 'DB_USER',
define( 'DB_PASSWORD',
define( 'DB_HOST',
define( 'DB_CHARSET',

'database_name_here' );
'username_here' );
'password_here' );
'localhost' );
'utf8' );

/* MySQL database table prefix. */


$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
/* 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'
define('FS_CHMOD_FILE',0755);
define('FS_CHMOD_DIR',0755);
/* WordPress Localized Language. */
define( 'WPLANG', '' );
/* 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');

);
);
);
);
);
);
);
);

You might also like