wp_config.php
AR core
<?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', 'database_name_here' ); define( 'DB_USER', 'username_here' ); define( 'DB_PASSWORD', 'password_here' ); define( 'DB_HOST', 'localhost' ); define( 'DB_CHARSET', 'utf8mb4' ); /* MySQL database table prefix. */ $table_prefix = 'wp_'; /* Authentication Unique Keys and Salts. */ define('AUTH_KEY', 'ub#GDo rhhr{~_K4WTVGU5$x|R],-sXN],iLp2,=,k[vtM6a8H`P-d&rT/A)$QeX7H-WMb'); define('NONCE_KEY', 'F}DfwcZKDtTRt);]EgDR}GzXzo6/p#i.O|{:N[ro%k=F^kJ;=4rGkwEmk4_LG+T8'); define('AUTH_SALT', ')[F[UZ/Kvcl6u#tUPotz$X{^ZBk1U|[aykAT-jX$83y_lB}U%:2{!-l|b[&r_?*K'); define('SECURE_AUTH_SALT', 'fN=zBz/~:[+15+YA9=y9X]9[o)P193|Um[JZeyz2y}&Z?Z)jmm,VEM`{AjjQ32D~b752,b]AOm&=a/%GS?O9|4zDu@2|N94q`=G@OB)R~r'); /* SSL */ define( 'FORCE_SSL_LOGIN', true ); define( 'FORCE_SSL_ADMIN', true ); /* WordPress debug mode for developers. */ define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false ); define( 'SCRIPT_DEBUG', true ); define( 'SAVEQUERIES', 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');