Defaults wp-config

If the webserver is w123c2 , then



// Do not change this as it will disable the CDN
define('MANAGEDWPHOSTING_MEDIA', '123');
define('MANAGEDWPHOSTING_FF', 'ff170c2.wpsslnode.com');

// SSL
if (  isset($_SERVER['HTTP_X_FORWARDED_PROTO'] ) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') {
        define('FORCE_SSL_ADMIN', true);
        $_SERVER['HTTPS']='on';
}

define( 'UPLOADS', 'wp-content/uploads' );

///define( 'DISABLE_WP_CRON', true);  ### Do not worry, we use a real cron for this which is way better!




/*
ManagedWPHosting code below
*/

define('FS_METHOD','direct');

/*
Your custom code below
*/


/*
Stop editing your custom code! Leave all code below as is
*/

Leave a Comment