Thanks everybody for your answers. I tried the new user default plugin. This work, but add new user also to the mainblog (which is unchecked in the configuration). I hope this will be fixed in the feature. :)
Happy Easter! Am 04.04.2010 um 01:23 schrieb [email protected]: > > Message: 3 > Date: Sat, 3 Apr 2010 19:44:12 +0200 > From: Tim Scharner <[email protected]> > Subject: [wp-testers] More than one Dashboard Site possible? > To: [email protected] > Message-ID: <[email protected]> > Content-Type: text/plain; charset=us-ascii > > Hi everybody, > > this is my first post on this mailing list. So I hope this is correct. > At the moment I test the new Network feature. > My question is if it will be possible to choose more than one dashboard site > for new users (I mean this under Super Admin -> Options -> Dashboard Site). > So new registered users can write on more than one blog? > For example. I have my main blog example.com and two subblogs > test1.example.com and test2.com. New users can write automatically on both > subblogs? > > Kind regards, > > Tim > > ------------------------------ > > Message: 4 > Date: Sat, 3 Apr 2010 21:34:18 +0300 > From: scribu <[email protected]> > Subject: Re: [wp-testers] More than one Dashboard Site possible? > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=UTF-8 > > On Sat, Apr 3, 2010 at 8:44 PM, Tim Scharner <[email protected]> wrote: > >> For example. I have my main blog example.com and two subblogs >> test1.example.com and test2.com. New users can write automatically on >> both subblogs? >> > > Not automatically. You have to assign them a role for each blog. > > Here's a little script I use to automate this: > > function setup_users($blog_id) { > $user_ids = array(2, 31, ... ); > > foreach ( $user_ids as $user_id ) > add_user_to_blog($blog_id, $user_id, 'edit'); > } > add_action('wpmu_new_blog', 'setup_users')); > > It's very basic, but I'm sure you get the gist of it. > > > -- > http://scribu.net > > > ------------------------------ > > Message: 5 > Date: Sat, 3 Apr 2010 21:35:13 +0300 > From: scribu <[email protected]> > Subject: Re: [wp-testers] More than one Dashboard Site possible? > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=UTF-8 > > Oh, that should be 'editor' instead of 'edit'. > > > -- > http://scribu.net > > Message: 7 > Date: Sat, 3 Apr 2010 14:28:15 -0500 > From: Deanna Schneider <[email protected]> > Subject: Re: [wp-testers] More than one Dashboard Site possible? > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > I wrote this plugin to do that. Not yet tested with 3.0, though: > > http://wordpress.org/extend/plugins/wpmu-default-user-role/ > > > On Sat, Apr 3, 2010 at 1:34 PM, scribu <[email protected]> wrote: >> On Sat, Apr 3, 2010 at 8:44 PM, Tim Scharner <[email protected]> wrote: >> >>> For example. I have my main blog example.com and two subblogs >>> test1.example.com and test2.com. ?New users can write automatically on >>> both subblogs? >>> >> >> Not automatically. You have to assign them a role for each blog. >> >> Here's a little script I use to automate this: >> >> function setup_users($blog_id) { >> ? ? ? ?$user_ids = array(2, 31, ... ?); >> >> ? ? ? ?foreach ( $user_ids as $user_id ) >> ? ? ? ? ? ?add_user_to_blog($blog_id, $user_id, 'edit'); >> } >> add_action('wpmu_new_blog', 'setup_users')); >> >> It's very basic, but I'm sure you get the gist of it. >> >> >> -- >> http://scribu.net >> _______________________________________________ >> wp-testers mailing list >> [email protected] >> http://lists.automattic.com/mailman/listinfo/wp-testers >> _______________________________________________ wp-testers mailing list [email protected] http://lists.automattic.com/mailman/listinfo/wp-testers
