• I have setup a new multisite setup. I have installed the plugin, moved sunrise.php, added the parked domain, added the wildcard, etc. (see video link).

    When I attempt to map a domain, I do not get any mapping. I cannot figure out the cause. Please advise.

    Alan Smith

Viewing 2 replies - 1 through 2 (of 2 total)
  • I think you have your config.php wrong – the SUNRISE line should be the very last one before the require_once line – you have it too early on. It should be like this:

    ….
    if ( !defined(‘ABSPATH’) )
    define(‘ABSPATH’, dirname(__FILE__) . ‘/’);

    define ( ‘SUNRISE’, ‘on’ );

    /** Sets up WordPress vars and included files. */
    require_once(ABSPATH . ‘wp-settings.php’);

    I’m no expert but that should help. Now to get on with trying to work out why mine isn’t working!

    Plugin Author Ron Rennick

    (@wpmuguru)

    the SUNRISE line should be the very last one before the require_once line – you have it too early on.

    It needs to be before the if ( !defined(‘ABSPATH’) ) but does not need to be immediately before that. The order of code in wp-config.php doesn’t matter except for the lines after that one need to be left as they are.

    In answer to the original question, the forum upgrade temporarily disabled the sticky posts. As of WP 4.4, you do not need the domain mapping plugin in new installs. See https://www.ads-software.com/support/topic/howto-domain-mapping-without-a-plugin-instructions/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Mapping not working’ is closed to new replies.