• Resolved drblogger

    (@drblogger)


    Just managed to install, and enable Multisite…

    I made sure during install, that I selected the subfolders option. But when I create a new site, enter the folder namem, then visit the site, most of th content is missing, no imagis, broken links etc…

    Ive also looked in the root of my primary domain folder expecting to see the created subfolder, but nothing… I deleted and tried again, but first manually created the subfolder. This time when I clicked to visit the site, I got the index page.

    In either case, Ive not seen any evidence of the WP install within the directory, or even the created directory!

    Could this be a mod_rewrite issue? Ive also heard somehosts dont support WP Multisite, but I dont understand what is meant by them not supporting it….

    Anyone please help..??

Viewing 7 replies - 1 through 7 (of 7 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    In either case, Ive not seen any evidence of the WP install within the directory, or even the created directory!

    You won’t. They are VIRTUAL folders. Don’t screw with your head by looking ??

    Usually it’s mod-rewrite. What’s in your .htaccess?

    Thread Starter drblogger

    (@drblogger)

    That makes sense… Ive just read a few people saying this needs to be modified, the setup into I read never said anything about modifying this file…

    #Made Multi-Site with Multi-Site Enabler 1.4#
    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]
    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Made Multi-Site with Multi-Site Enabler 1.4

    Oh … well god knows what THAT plugin did to jack things up. Honestly, if you can’t follow the steps here https://codex.www.ads-software.com/Create_A_Network you may not be technically ready to run MultiSite. This IS NOT a value judgement. It’s just a walk before you run comment ??

    Anyway. Wipe that file and replace it with this:

    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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).*) $1 [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    # END WordPress

    Thread Starter drblogger

    (@drblogger)

    Lesson learnt!!!… Thanks that did the trick!!!

    Ill try to walk from now on, or maybe even a slow crawl for a bit first… Id only just learnt of Multisites, and seemed a great solution to a problem I had…

    Next task, to get Domain Mapping to work!!! At least the plugin for this is a mnaual install, so no fear of it breaking anything – famous last words!!!

    THANKS!!!

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Yeah, the problem with those ‘install Multisite for you’ plugins is that you don’t get to learn HOW things tie in, so you’re less comfortable later on when we tell you things like ‘move the define call above the Multisite section in wp-config.php’ ??

    Basically you skip steps and miss out on the basic grounding.

    Thread Starter drblogger

    (@drblogger)

    All up and running now, domain mapping working great!!!

    lol.. working in I.T myself (data comss, pc support) I should know better than to use shortcuts!!!…

    Im going to go through the links you have given so I know whats going on, instead of just trying to bodge it!!!!

    CHEERS!!!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘New Multisite install, not writing to subfolders?’ is closed to new replies.