Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wpconfig

<?php
/**
 * Custom WordPress configurations on "wp-config.php" file.
 *
 * This file has the following configurations: MySQL settings, Table Prefix, Secret Keys, WordPress Language, ABSPATH and more.
 * For more information visit {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
 * Created using {@link http://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
 *
 * @package WordPress
 * @generator GenerateWP.com
 */


/* MySQL settings */
define( 'DB_NAME',     'swcleandb' );
define( 'DB_USER',     'swcleanusr' );
define( 'DB_PASSWORD', 'ZTbhKVXCJJdo' );
define( 'DB_HOST',     'localhost' );
define( 'DB_CHARSET',  'utf8' );


/* MySQL database table prefix. */
$table_prefix = 'sw_';


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'YRJ3,^AJ~k2Yn< , 86lD/|7&NamsYtUX2MpCI1e2Fl9)M.Xfx');
define('SECURE_AUTH_KEY',  '*B(Y#cHV$k^;K z9Y|ME2);vi|!xU|0F_9;Y%z|2$b[Fr+T71)CXk*;f/Bkb/TBq');
define('LOGGED_IN_KEY',    'kL1JXltwetn+K7tI{E3#H4 !Q]ONhXcnpj:XFa^xCNoOml[!=E67WA ghqy+PhI-Ch2~ydLT+3_qF#L%o)c%Ee9DW?gqBT kIu]je');
define('SECURE_AUTH_SALT', 'ay 3K&e}=CB%&Ub{QYB@rZNaOf7C/il3E`/c8|z+vgZ],$ZDF^s$U]r4mWL}9k,[LBlrIMhM-+-OoQhO0eUl^K-aR;Qw>w*6UUyx-z)|HlNn=Z4');


/* SSL */
define( 'FORCE_SSL_ADMIN', true );


/* Disable Post Revisions. */
define( 'WP_POST_REVISIONS', false );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '7' );


/* WordPress debug mode for developers. */
define( 'WP_DEBUG',         false );
define( 'WP_DEBUG_LOG',     true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SCRIPT_DEBUG',     true );
define( 'SAVEQUERIES',      true );


/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '256M' );


/* CRON */
define( 'DISABLE_WP_CRON',      'true' );


/* Updates */
define( 'WP_AUTO_UPDATE_CORE', false );


/* 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');