Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

config

<?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 http://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
 * Created using {@link https://generatewp.com-config/ wp-config.php File Generator} on GenerateWP.com.
 *
 * @package WordPress
 * @generator GenerateWP.com
 */


/* MySQL settings */
define( 'DB_NAME',     'database_name_here' );
define( 'DB_USER',     'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST',     'localhost' );
define( 'DB_CHARSET',  'utf8' );


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


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'HdVU-=!adq<bU:59|6[Ky)OZ^#-Bn&O K+tNrRXvo|gl*)4lV(g| ^<s7-kvW;O}u@ry');
define('LOGGED_IN_KEY',    'O8,ck6q_gZ`|g}/PN!S V2eO}W`GqCnkzAEDEU.uKQfooHEQqq/R?+RV`Z_#|yQC');
define('NONCE_KEY',        '+A*be-L8k;]EvVhv,e<!qcq7^Dk-%Gi&}s)jUX}ptaI`+]`+[rF|Fh`Aid&Z-hx`Da&4Y1F=w5gY~fwa3K`g18}UiTgjD0');
define('SECURE_AUTH_SALT', 'Q2pk@FeoALq!l)cqaIt!pnt+Y^0PqP,W|IUL,UAD?sI5i+E 2Y@gR4#A|09]IT4j');
define('LOGGED_IN_SALT',   '>?`3O`Evn=#lLZj`mL:|9VPqJaA:G}em?7RlQT*U');
define('NONCE_SALT',       ',D-.;x0r|d1|m9@Of^C-j.V|JwXfnkiOiBaS._Q3|`|5,NFbG)e+&YJ|$G~2@(a5');


/* WordPress Localized Language. */
define( 'WPLANG', 'tr_TR' );


/* Custom WordPress URL. */
define( 'WP_SITEURL',     'http://example.com' );
define( 'WP_HOME',        'http://example.com' );
define( 'WP_CONTENT_URL', 'http://example.com/assets' );
define( 'UPLOADS',        'http://example.com/assets/uploads' );
define( 'WP_PLUGIN_URL',  'http://example.com/assets/plugins' );


/* Disable Post Revisions. */
define( 'WP_POST_REVISIONS', false );
/* Media Trash. */
define( 'MEDIA_TRASH', false );


/* Multisite. */
define( 'WP_ALLOW_MULTISITE', false );


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


/* WordPress Cache */
define( 'WP_CACHE', true );


/* Compression */
define( 'COMPRESS_CSS',        true );
define( 'COMPRESS_SCRIPTS',    true );


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


/* Updates */
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'DISALLOW_FILE_MODS', false );
define( 'DISALLOW_FILE_EDIT', true );


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