First I’ve heard of the plugin. The plugin author is one of the 3 main coders for BuddyPress though. You might try sending him a message: https://buddypress.org/developers/johnjamesjacoby/
First I’ve heard of the plugin. The plugin author is one of the 3 main coders for BuddyPress though. You might try sending him a message: https://buddypress.org/developers/johnjamesjacoby/
Ooh… Looks very interesting. *downloads to read through the code*
Ooh… Looks very interesting. *downloads to read through the code*
@jacco ~ in order to find the multi site functionality ~ you’ll need to enable it multi by adding this to the wp-config.php file define( 'WP_ALLOW_MULTISITE', true );
@jacco ~ in order to find the multi site functionality ~ you’ll need to enable it multi by adding this to the wp-config.php file define( 'WP_ALLOW_MULTISITE', true );
Also, I believe that Andrea Rennick is working on a similar plugin called “Networks+”; interesting times are ahead for those who need this sort of thing.
Also, I believe that Andrea Rennick is working on a similar plugin called “Networks+”; interesting times are ahead for those who need this sort of thing.
The the OP: Do you have the Network enabled in the beta? That has to be on first.
The the OP: Do you have the Network enabled in the beta? That has to be on first.
Here’s a question regarding the WP-Multi Network Plugin and WordPress 3-RC1
Everything works swimmingly so far apart from one thing. When I try and signup up for a new blog on one of the networks it doesn’t redirect to the wp-signup.php file corectly. Works fine on the main site but not on the multi network sites I’ve setup.
Guessing this can be fixed using .htaccess to redirect those requests so any tips on how to go about this would be fantastic.
Well, whomp there it is! Thanks @johnjamesjacoby
You’re welcome
I’ll be revisiting this plugin soon after 3.0 drops.
cool John !
That is exactly what I was looking for:
one User-Login over several BP-pages having different domains (not sub-domains).
I hope so….this plug-in is phenomenal.
I found a conflict with Multi Network & Buddypress. When you activate buddypress on a new network, the title_ tags & toolbar displays the title of the main site from the original network. Is there a fix for this?
I was getting a redirect loop on the wp-signup.php page on my sub networks
Well found out what’s causing the problem here
https://core.trac.wordpress.org/ticket/13211#comment:1
It has to do with the code that is in wp-signup.php in lines 25 -33
if ( !is_multisite() ) {
wp_redirect( get_option( 'siteurl' ) . "/wp-login.php?action=register" );
die();
}
if ( !is_main_site() ) {
wp_redirect( network_home_url( 'wp-signup.php' ) );
die();
}
Wordpress doesnt allow signups on subsites. When someone tries to sign up on a sub site, it redirects them to the main site.
I am using the multi network plugin,
(https://wordpress.org/extend/plugins/wp-multi-network/)
even though a site may be the main site for an additional network, wordpress still sees it as being a subsite so it keeps redirecting in an endless loop. By commenting out those lines it fixed the problem.
Is there a way to make a plugin for this instead of having to hack core?
Here you have a step by step tutorial for the WP Multi Network Plugin.
Hope it works for you.
http://www.uv.mx/personal/gvera/2010/11/19/how-to-use-the-wp-multi-network-plugin/