LC
Caching an customizing special
<?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/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', 'utf8' ); define( 'DB_COLLATE', 'utf8_general_ci' ); /* MySQL database table prefix. */ $table_prefix = 'lc_'; define( 'CUSTOM_USER_TABLE', $table_prefix . 'customers' ); define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'customermeta' ); /* Authentication Unique Keys and Salts. */ define('AUTH_KEY', '{~MblVqYv*G^VC.V9yvq#epvol!C)h%)-e?uVkV9AiI];Q_Oyl@TZ;|f/&vBAGd$'); define('SECURE_AUTH_KEY', 'IaO|ujY67+n+xp#.oQO)E|=YGNGy&LR;XGM}lBv2[bu!]8]9K:]-(B>a2P=mXMna'); define('LOGGED_IN_KEY', 'Tdqq$E:`j5C1n98R`G9FE;E%x{)uVQ}tPP[6jvbNO2$nm[w_'); define('NONCE_KEY', 'W2-hM.9+ML|9]I#7~.YAmbW3zIv HTk=|cX&SCnF+zr,q?mB8|S>{RQfvzVl-WR_'); define('AUTH_SALT', 'IZ0+${]pXVRZ5w?;5)A$UYP$.s>wDrSSvq+fLOlF>(QtA.xnA:jGP6Hf)}Q8E?'); define('LOGGED_IN_SALT', 'qou{emVn@_?IS{&VuehUKfb!sa8;dv(}4DTX=}pbTUQ[zqu6PT*VO%-u+&nIW/iL'); define('NONCE_SALT', '| YyG7v_.B|qT8P9.imfSb#wpW|);kC-jg!MW2C-x>.h)U5ZG5o[ZjT7MAQ7=i[-'); /* SSL */ define( 'FORCE_SSL_LOGIN', true ); define( 'FORCE_SSL_ADMIN', true ); /* WordPress Localized Language. */ define( 'WPLANG', 'de_DE' ); /* Custom WordPress URL. */ define( 'WP_SITEURL', 'http://linsencenter.de' ); define( 'WP_HOME', 'http://linsencenter.de' ); define( 'WP_CONTENT_URL', 'http://linsencenter.de/wp-content' ); define( 'UPLOADS', 'http://linsencenter.de/wp-content/uploads' ); define( 'WP_PLUGIN_URL', 'http://linsencenter.de/wp-content/plugins' ); define( 'COOKIE_DOMAIN', 'linsencenter.de' ); /* Specify maximum number of Revisions. */ define( 'WP_POST_REVISIONS', '30' ); /* Media Trash. */ define( 'MEDIA_TRASH', true ); /* Trash Days. */ define( 'EMPTY_TRASH_DAYS', '740' ); /* Multisite. */ define( 'WP_ALLOW_MULTISITE', false ); /* WordPress debug mode for developers. */ define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', true ); define( 'SCRIPT_DEBUG', true ); define( 'SAVEQUERIES', true ); /* PHP Memory */ /* WordPress Cache */ define( 'WP_CACHE', true ); /* Compression */ define( 'COMPRESS_CSS', true ); define( 'COMPRESS_SCRIPTS', true ); define( 'CONCATENATE_SCRIPTS', true ); define( 'ENFORCE_GZIP', true ); /* FTP */ define( 'FTP_SSL', true ); /* CRON */ define( 'DISABLE_WP_CRON', 'false' ); define( 'ALTERNATE_WP_CRON', 'true' ); define( 'WP_CRON_LOCK_TIMEOUT', 3600 ); /* 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');