• Resolved andromanfro

    (@andromanfro)


    Hi all!

    I was activating the Multisite option for my website and I followed (I was sure!) these steps:

    https://premium.wpmudev.org/blog/ultimate-guide-multisite/

    Basically I:

    – modified the wp-config.php and .htaccess files inserting the code provided by WordPress
    – added the 2 subdomains from the cPanel

    Unfortunately something gone wrong and now on the subdomains I just have a welcome page from my service provider… (it_dot_ipeu_dot_org and ch_dot_ipeu_dot_org)

    Thanks in advance for any help!

    Andrea

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    Where these subdomains are pointed in DNS settings? Usually that problem happens when subdomains pointed to their own folders instead of the main site folder.

    Thanks

    Thread Starter andromanfro

    (@andromanfro)

    Hi Pavel!

    I added the A Records pointing to the IP of the WordPress I saw in the cPanel…

    I forgot to give you the content of my 2 files I modified following the procedure…:

    – htaccess

    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    # END WordPress

    – wp-config.php

    define(‘WP_DEBUG’, false);
    define( ‘WP_ALLOW_MULTISITE’, true );
    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, true);
    define(‘DOMAIN_CURRENT_SITE’, ‘mydomain.org’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);
    /* That’s all, stop editing! Happy blogging. */

    Thank you,

    Andrea

    • This reply was modified 6 years, 9 months ago by andromanfro.
    Thread Starter andromanfro

    (@andromanfro)

    Solved!
    I found that here they said to insert “public_html” as root folder… That was the problem…!
    Andrea

    Hi,

    I’m glad you were able to fix this. Thank you for posting the update, I’m sure it will be helpful for people with same problem.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Error on Multisite Configuration’ is closed to new replies.