Created
December 19, 2013 13:22
-
-
Save zellwk/8038988 to your computer and use it in GitHub Desktop.
wp local config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Local server settings | |
// Local Database | |
define('DB_NAME', 'local_db'); | |
define('DB_USER', 'local_db_user'); | |
define('DB_PASSWORD', 'local_db_pw'); | |
define('DB_HOST', 'localhost'); | |
// Overwrites the database to save keep client from editing the DB | |
// define('WP_HOME','http://client.website.dev'); | |
// define('WP_SITEURL','http://client.website.dev'); | |
// Turn on debug for local environment | |
define('WP_DEBUG', true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment