Skip to content

Instantly share code, notes, and snippets.

@xeiter
Last active January 10, 2016 21:18
Show Gist options
  • Save xeiter/10ab6a103dce4655a0e9 to your computer and use it in GitHub Desktop.
Save xeiter/10ab6a103dce4655a0e9 to your computer and use it in GitHub Desktop.
WordPress - local configuration file
<?php
define( 'DB_NAME', '' );
define( 'DB_USER', '' );
define( 'DB_PASSWORD', '' );
define( 'DB_HOST', '127.0.0.1' );
define( 'WPLANG', '' );
define( 'WP_DEBUG', true );
define( 'SCRIPT_DEBUG', true );
define( 'WP_SITEURL', 'http://<domain-name>/wp' );
define( 'WP_HOME', 'http://<domain-name>' );
define( 'WP_CONTENT_URL', 'http://<domain-name>/content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment