Skip to content

Instantly share code, notes, and snippets.

@joehoyle
Created May 13, 2015 14:57
Show Gist options
  • Select an option

  • Save joehoyle/5ce97d4c7bf72e3e340a to your computer and use it in GitHub Desktop.

Select an option

Save joehoyle/5ce97d4c7bf72e3e340a to your computer and use it in GitHub Desktop.
<?php
define( 'DB_NAME', 'unitedbloggers' );
define( 'DB_USER', 'root' );
define( 'DB_PASSWORD', '' );
define( 'DB_HOST', 'localhost' );
//define( 'WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] . '/wordpress' );
//define( 'WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] );
define( 'DOMAIN_CURRENT_SITE', 'unitedbloggers.dev' );
define( 'S3_UPLOADS_BUCKET', 'hmn-uploads-eu-central/unitedbloggers-production' );
define( 'S3_UPLOADS_KEY', 'a' );
define( 'S3_UPLOADS_SECRET', 'a' );
define( 'S3_UPLOADS_USE_LOCAL', false );
defined( 'WP_DEBUG_DISPLAY' ) or define( 'WP_DEBUG_DISPLAY', true );
ini_set( 'display_errors', 'on' );
define( 'WP_MAX_MEMORY_LIMIT', '1024M' );
define( 'HM_FRAGMENT_CACHE_SHOW_DEBUG', false );
define( 'HM_FRAGMENT_CACHE_DISABLE', true );
define( 'WP_CACHE', false );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment