• I have added the multi-site version of wordpress to my initial installation. The original site works perfectly, but when I add another site, I cannot customize the active theme, nor any other one.

    The new site’s url only brings up a page with directory contents, and not the theme.

    Index of /wordpress/artblog

    Parent Directory

Viewing 9 replies - 16 through 24 (of 24 total)
  • Thread Starter merlin4539

    (@merlin4539)

    screenshot 1
    screenshot 2

    Does not matter what theme I try to use for the new blog. And I did deactivate all plugins.

    Hey, in Network Admin, did you go to Dashboard > Upgrade Network and click the Upgrade Network button? This is totally a shot in the dark but I remember our Systems guy telling me this was an important step after making some changes.

    Thread Starter merlin4539

    (@merlin4539)

    Just did the Upgrade Network. Still the same issue.

    Hmm, bummer, I created two more sites. Three in all. The first one titled WordPress, the second titled, WordPress Site 1, and the third titled WordPress Site 2. I’ve gone to all three sites and followed your Appearance > Customize steps but couldn’t reproduce your blank page issue with what looks like a spinning wheel in your screenshot 1.

    P.S., In Network Admin, did you go to Settings > Network Setup add the provided code to your wp-config.php file and your .htaccess file as instructed?

    What are your Permalink settings?

    Note that I just went to https://evening-sun.com/wordpress/artblog/ and easily reproduced the “Index of /wordpress/artblog ? Parent Directory” issue you are seeing.

    Oh my, I just Googled around and found this possible apropos WordPress support thread:

    https://www.ads-software.com/support/topic/multisite-subdirectories-only-leave-me-with-empty-directories

    I’m going to read it now because it ends with a happy, “I figured it out….” but I wanted to get this to you ASAP being that I am a super slow reader! ??

    P.S., I have a sneaky suspicion your issue might have something to do with needing to follow the instructions on the Network Admin > Settings > Network Setup page that states, in my case, the following:

    Network Setup
    The original configuration steps are shown here for reference.

    1. Add the following to your wp-config.php file in /Applications/MAMP/htdocs/wordpress/ above the line reading /* That’s all, stop editing! Happy blogging. */:

    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', false);
    define('DOMAIN_CURRENT_SITE', 'localhost');
    define('PATH_CURRENT_SITE', '/wordpress/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    2. Add the following to your .htaccess file in /Applications/MAMP/htdocs/wordpress/, replacing other WordPress rules:

    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    Unless, of course, you’ve already done this!

    Thread Starter merlin4539

    (@merlin4539)

    Thanks again for all your assistance — much appreciated!

    I have done everything by the book, but cannot afford to do a complete re-install of wp, because I would lose all my posts, articles, etc. And it does not seem there is a way to just do a multi-site re-install.

    I double-checked all the config files and .htacess, and everything is correct.

    You’re very welcome. And no worries, I am sure someone else will read through this thread and have an Ah Ha! moment and help solve your issue. Might I suggest, before going any further, revert back to a standard site and perform a complete backup on both your site files and database. Unless, of course, you’ve already done that. Because, absolutely, you should not even have to worry about losing all your posts, etc. Goodnight and, again, I am sure there’s a solution waiting for you out there that just hasn’t happened yet! ??

Viewing 9 replies - 16 through 24 (of 24 total)
  • The topic ‘Cannot create new site’ is closed to new replies.