Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    Ok, I understand the intent and have fixed my original problems.

    I have followed the wp setup for this

    wp-config entries

    define( ‘MULTISITE’, true );
    define( ‘SUBDOMAIN_INSTALL’, false );
    $base = ‘/’;
    define( ‘DOMAIN_CURRENT_SITE’, ‘domain.com’ );
    define( ‘PATH_CURRENT_SITE’, ‘/’ );
    define( ‘SITE_ID_CURRENT_SITE’, 1 );
    define( ‘BLOG_ID_CURRENT_SITE’, 1 );

    htacess entries

    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).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    The above entries resolved the original problems I was having.

    However, I did have to manually enter the theme/stylesheet for a newsite on the options screen for the site and update.

    One I did that my current final problem was resolved, the missing styles.

    Good Luck All

    Thanks for all the help.

    Hello All,

    I think this is the right place to mention this and ask as well.

    I installed wordpress 3 and enabled multi user. On the admin end
    all looks ok as weel as the main site, but when I create a new subdirectory blog, the paths are wrong or at least it seems so.

    What happens is that the home page links resolve correctly, but the new site links point to invalid locations.

    Main Site
    domain.com/wp-content/themes/mytheme/style.css
    where this style exists

    New Site
    domain.com/sitename/wp-content/themes/mytheme/style.css
    this does not exist.

    This causes the new site to not include the styling.

    Did I do this wrong or is it a bug?

    Thanks,
    Phil

    PS I also noticed that even though I activated one particular them for the newsite, it was style using the original default theme.

Viewing 2 replies - 1 through 2 (of 2 total)