• Resolved Blogathought

    (@blogathought)


    Im having an issue almost similar, on my multisite ever since the 3.1 update when a new blog is created its supposed to be placed in http://www.mydomain.com/blogs/newblog but now its going to http://www.mydomain.com/newblog and I can not figure out why.

    When I installed wordpress I did so in a sub directory. Everything was going ok but after I updated the software to 3.1 it wont place newly created blogs in the subdomain it puts them in the domain root

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

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    In your wp-config.php file, what’s the $base value set to?

    Thread Starter Blogathought

    (@blogathought)

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

    Should it look like this?

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

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Yeah, it should look like $base = '/blogs/'; I think.

    Thread Starter Blogathought

    (@blogathought)

    Ok I changed it and made a test site and it works now thank you very much

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘New registration problems since 3.1’ is closed to new replies.