• Hello,

    I’ve just recently switched my WPMU site from one server to another. I backed up everything and had to do a find/replace in my back up so that it would replace any old instance of the old server with the new one. Now everything seems to be working great for my main site. http://myindiejunction.com however, any subfolders/user sites are only populating the basic text. There’s no theme. So I tried to go behind the scenes in the dashboard… and it’s none existant. Here’s a link to my sub site. http://myindiejunction.com/viau5 Any ideas because my users are getting really antsy to update their blogs!

    Thanks

Viewing 1 replies (of 1 total)
  • Double-check your htaccess file. 🙂

    Should look something like this:

    RewriteEngine On
    RewriteBase /

    #uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    # add a trailing slash to /wp-admin
    RewriteCond %{REQUEST_URI} ^.*/wp-admin$
    RewriteRule ^(.+)$ $1/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . – [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

Viewing 1 replies (of 1 total)
  • The topic ‘Multisites not accessible to all my users’ is closed to new replies.