Skip to content

Instantly share code, notes, and snippets.

View iammahmudur's full-sized avatar

Md Mahmudur Rahman iammahmudur

View GitHub Profile
@iammahmudur
iammahmudur / wp_config.php
Created September 26, 2012 04:48 — forked from franz-josef-kaiser/wp_config.php
Example from wp_config.php (wordpress config file) that shows different environments
/**
* Production, Staging, Live
*/
define( 'OXO_LOCAL_A', '/wordpress/' );
define( 'OXO_STAGE', 'some-stage.domain.com' );
if ( substr($_SERVER['REQUEST_URI'], 0, 11) == OXO_LOCAL_A )
{
// DB
define( 'DB_NAME', 'wordpress' );