Skip to content

Instantly share code, notes, and snippets.

@davidperezgar
Created January 19, 2016 16:02
Show Gist options
  • Save davidperezgar/995621177286bb873338 to your computer and use it in GitHub Desktop.
Save davidperezgar/995621177286bb873338 to your computer and use it in GitHub Desktop.
WordPress Config for Live Site
<?php
define('DB_NAME', '');
define('DB_USER', '');
define('DB_PASSWORD', '');
define('DB_HOST', 'localhost');
define('WP_HOME', 'http://');
define('WP_SITEURL', 'http://');
define('FS_METHOD','direct');
define('WP_DEBUG', false);
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define('DISALLOW_FILE_EDIT', TRUE);
define('AUTH_KEY', '');
define('SECURE_AUTH_KEY', '');
define('LOGGED_IN_KEY', '');
define('NONCE_KEY', '');
define('AUTH_SALT', '');
define('SECURE_AUTH_SALT', '');
define('LOGGED_IN_SALT', '');
define('NONCE_SALT', '');
//Use for Cookies https://api.wordpress.org/secret-key/1.1/salt/
$table_prefix = 'wpclmkg_';
define ('WPLANG', 'es_ES');
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
require_once(ABSPATH . 'wp-settings.php');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment