The MU forums have moved to WordPress.org

Using Mu to Control Multiple Blogs on Separate Hosts (5 posts)

  1. DefensiveDancing
    Member
    Posted 17 years ago #

    I'm wondering if this cane be done, and if so then how. I want to basically use Mu to manage multiple (universal and individual)users on multiple blogs, each sitting on different domain and hosting account.

    Tks in advance.

  2. peiqinglong
    Member
    Posted 17 years ago #

    No it will not be possible because MU depends on having all the blogs in the MU database. There is a way to manage MU using multiple databases, but its not what you want.

  3. amasso
    Member
    Posted 17 years ago #

    Here (http://www.amasso.info/?p=5) I explain how to use one Wordpress MU installation to be used with two domain names. For example, blogname.domaina.com & blogname.domainb.com will access the same blog in the WP MU database.

    It's in spanish but you can use Google to translate it. It includes the PHP code so it's pretty straight forward.

  4. Bike
    Member
    Posted 17 years ago #

    Hi Amasso, how do you use your code, both the snippet in your post (where do you put it) as well as the linked .php file (where do you leave it)?

    Does it mean that blogname.domaina.com & blogname.domainb.com are both valid, or can people choose to sign up for one or the other?
    Also: can you use different themes/homepages for domaina.com & domainb.com?

    Cheers, Bike (Bici :)

  5. amasso
    Member
    Posted 17 years ago #

    Hello Bike!

    In the http://www.amasso.info/wp-content/uploads/2007/10/wp-mu-multidomain.zip file there's a PHP document with the files & functions you need to change.

    For example:

    /* INICIO wp-includes/category-template.php */

    $domain = $_SERVER['HTTP_HOST'];
    $domain2 = strpos($domain, 'domain2');

    function wp_list_categories($args = '') {

    ...

    if($domain2 > 0){
    $output = str_replace("domain1", "domain2", $output);
    }

    echo apply_filters('list_cats', $output);

    }

    /* FIN wp-includes/category-template.php */

    Means you need to edit file wp-includes/category-template.php & function wp_list_categories.

    With this code snippet, blogname.domaina.com & blogname.domainb.com are both valid. By making some changes to my code you could use different themes for domaina.com & domainb.com

    Best regards,

    Antoni

About this Topic

  • Started 17 years ago by DefensiveDancing
  • Latest reply from amasso