• Resolved andrew-s3

    (@andrew-s3)


    I’ve installed MULTISITE on my website, and everything went swimmingly – or so I thought.

    under – /wp-admin/network/sites.php – it shows 2 sites. yet only 1 has the .com — and the other is supposed to be french.domain.com – and it only shows the word “french”.

    When I visit the network admin page though – it says only 1 site, 1 user. I’m unsure why my FRENCH subdomain isn’t showing up – and when navigating through my browser to french.domain.com – it shows the apache test page. When on FTP – there are no files in the directory for the subdomain. Am I missing something here?

    [No bumping, thank you.]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter andrew-s3

    (@andrew-s3)

    from reading other posts my .htaccess and wp-config.php look to be “okay” here’s what i’m working with for my wp-config:

    /* Multisite */
    define('WP_ALLOW_MULTISITE', true);
    
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', true);
    $base = '/';
    define('DOMAIN_CURRENT_SITE', 'domain.ca');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);
    
    /* That's all, stop editing! Happy blogging. */

    i’ve hidden the domain for privacy purposes

    and here’s the .htaccess:

    Options +FollowSymlinks
    RewriteEngine on
    
    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule . index.php [L]
    # END WordPress

    Thread Starter andrew-s3

    (@andrew-s3)

    i’m taking a stab in the dark that my problem is related to – http://codex.wordpress.org/Configuring_Wildcard_Subdomains quite possibly – anyone want to back me up on my theory?

    Thread Starter andrew-s3

    (@andrew-s3)

    IT’S ALIVE!

    had to make sure that the settings via dns for my subdomain pointed to the root directory; it was pointing to it’s own directory, and that was the problem.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Problems Detecting Second Site’ is closed to new replies.