Domain Mapping Disabled. You must create a network for it to work.

  • Unknown's avatar

    Domain Mapping Disabled. You must create a network for it to work. How i can disable it properly from my website as i have this snippet of code in wp-config.php
    * @link https://codex.wordpress.org/Debugging_in_WordPress
    */
    define(‘WP_DEBUG’, false);
    /* That’s all, stop editing! Happy blogging. */
    /** Absolute path to the WordPress directory. */
    if ( !defined(‘ABSPATH’) )
    define(‘ABSPATH’, dirname(__FILE__) . ‘/’);
    /** Sets up WordPress vars and included files. */
    require_once(ABSPATH . ‘wp-settings.php’);

    and i have this snippet of code in .htaccess
    RewriteOptions inherit
    RewriteEngine on

    Header set content-Security-Policy: upgrade-insecure-requests
    # BEGIN WordPress
    # The directives (lines) between BEGIN WordPress and END WordPress are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress
    # Use PHP72 as default
    # AddHandler application/x-httpd-php70 .php
    <IfModule mod_suphp.c>
    suPHP_ConfigPath /opt/php72/lib
    </IfModule>

    RewriteEngine On
    RewriteCond %{HTTP_HOST} shemeanswork.com [NC]
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://shemeanswork.com/$1 [R,L]

    still i am getting the error in my dashboard that
    Domain Mapping Disabled. You must create a network for it to work.

    The blog I need help with is: (visible only to logged in users)

  • shemeanswork.com is hosted by Host Gator and does not use our hosting from WordPress.com. This means that you’re using the open source WordPress.org software, and help for that comes from https://wordpress.org/support/forums/

  • The topic ‘Domain Mapping Disabled. You must create a network for it to work.’ is closed to new replies.