wp-config
test 1
<?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 https://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
*
* @package WordPress
* @generator GenerateWP.com
*/
/* MySQL settings */
define( 'DB_NAME', 'wordpress' );
define( 'DB_USER', 'wordpress' );
define( 'DB_PASSWORD', 'B6*f3^rU' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'h[}i~H{:jNj:-CJA}m>-;`hpg%|Fghz+GB');
define('SECURE_AUTH_KEY', '$`PuT4QChV+C+xbXeV6U?aZz6Jax-y;qE_V?kd*hrz0dbtw,LlB*||Ta)D/t2!T9');
define('LOGGED_IN_KEY', 'Q# UI$7=(?izM[5q|9OI?yE|J.MbSse,2|A/N>fx%!92$$!QQ-Vk!;5!9Id^x$Dn');
define('NONCE_KEY', 'ep6-1!^p7)2g5~z w-B3;>h{:h3NB%vh|hVj-m_UDW r`|Yxza|=w(*SQ$+hx9b0u');
define('SECURE_AUTH_SALT', 'Y{re3Otp7*yFU}-+8731(Ywm$?ng.3)aWfCR?b6.~H+WqW=#!_ZB,juw<+?MBzh(EZeJEJ /Vn]+Rh#e?R!&wC*F;,~hKHqvNc');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
/* Custom WordPress URL. */
define( 'WP_SITEURL', 'http://webdev.ahss.ndsu.nodak.edu/' );
define( 'WP_HOME', 'http://webdev.ahss.ndsu.nodak.edu/' );
define( 'WP_CONTENT_URL', 'http://webdev.ahss.ndsu.nodak.edu/wp-content' );
define( 'UPLOADS', 'http://webdev.ahss.ndsu.nodak.edu/wp-content/uploads' );
define( 'WP_PLUGIN_URL', 'http://webdev.ahss.ndsu.nodak.edu/wp-content/plugins' );
/* Multisite. */
define( 'WP_ALLOW_MULTISITE', true );
/* WordPress debug mode for developers. */
define( 'WP_DEBUG', false );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '64' );
define( 'WP_MAX_MEMORY_LIMIT', '256' );
/* FTP */
define( 'FTP_USER', 'asmith' );
define( 'FTP_PASS', 'As415068' );
define( 'FTP_HOST', 'webdev.ahss.ndsu.nodak.edu' );
define( 'FTP_SSL', true );
/* Updates */
define( 'WP_AUTO_UPDATE_CORE', true );
define( 'DISALLOW_FILE_MODS', false );
define( 'DISALLOW_FILE_EDIT', 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');