Starter
<?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' );
define( 'DB_COLLATE', 'utf8_general_ci' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
define( 'CUSTOM_USER_TABLE', $table_prefix . 'client' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'clientmeta' );
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'b.XH(MDyzuguUpU8+VlL+t~{zVl1u+l->NQinHVh|@Wf-.km)Mob(a_:rVqG6{//');
define('SECURE_AUTH_KEY', '3C;p([+G1AEMihX3v?Lc@Or8w^;dwz|yFG8Nm @spLHZj4O{BA@D{`(]/$~O(Yr)j4N7~({|)6Bi');
define('NONCE_KEY', '.@5:sDY 1(5;GIZT]eB_OK|LfWsBAu(3p`,`Y;=i`A_P&+1nRz/K%h8t}a6K,|vI');
define('AUTH_SALT', 'h1_PVd(LMi>h%:J9*g%m6^_B~`>z0te?g&r8pc`X!z98UAqZr[kn]Ov<~27CV_Iy');
define('SECURE_AUTH_SALT', 'KVgM4Kg#:Ki8trrXvTL6G2dtgeT$7Rst-%[9e3gOcEz^~9LixV]1{Z{ |S/9RA}&s0b4]aqVw');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
/* Custom WordPress URL. */
define( 'WP_SITEURL', 'https://starter.infosourcect.com' );
define( 'WP_HOME', 'https://starter.infosourcect.com' );
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '10' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '64M' );
define( 'WP_MAX_MEMORY_LIMIT', '512M' );
/* 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');