Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 7,476 through 7,500 (of 7,641 total)
  • Author
    Search Results
  • #41782

    In reply to: register Page

    Famous
    Participant

    This is to answer the original question:

    I can tell you exactly what this is…

    You are missing the information from the functions.php file in the latest trunk of buddypress-home. You are most likely using a functions.php from your own custom theme, which creates the redirect above.

    Without that data the registration and activation won’t work.

    #41781
    Famous
    Participant

    I can tell you exactly what this is…

    You are missing the information from the functions.php file in the latest trunk of buddypress-home. You are most likely using a functions.php from your own custom theme, which creates the redirect above.

    Without that data the registration and activation won’t work.

    #41611
    Trent Adams
    Participant
    #41603
    Shelley Keith
    Participant

    I’ve reset my email domain registration limitations if you want to test on wearesau.net.

    #41590
    reprocessor
    Participant

    OOOOOOH :) Please tell me where to find it. Is it on the wordpress or bpdev sites? or some other location?

    #41588
    Andy Peatling
    Keymaster

    There is a “terms and conditions” plugin available that you could use.

    #41575

    In reply to: register Page

    takuya
    Participant

    I found the conflict… somewhat qtranslate was enabled on the root…

    You can use qtranslate on the sub, but don’t use it on the root as it conflicts somehow with the registration.

    #41522

    In reply to: Several problems Andy

    1stAngel
    Participant

    My posts from my own blogs are not showing.

    I use feedwordpress to import some posts on the other blogs but blogs are showing that do not use that at all so I cannot see thats an issue

    wpmu is in a folder off the root called wpmu and has been working for a very long time perfectly with no issues at all.

    BTW, as soon as I put this BP on I have had a ton of spam blogs made so now have had to turn off registration for a while. I have seen there is a fix for this somewhere but wont bother until I know the BP will work.

    #41429
    Aron Jay
    Participant

    <?php

    /*

    Plugin name:Limit Blogs per User

    Plugin Author:Brajesh K. Singh

    Plugin URI:http://www.thinkinginwordpress.com/2009/03/limit-number-of-blogs-per-user-for-wordpress-mu-and-buddypress-websiteblog-network/

    Author URI:http://ThinkingInWordpress.com

    Version:1.0

    */

    add_filter(\”wpmu_active_signup\”,\”tiw_check_current_users_blog\”); //send fake/true enable or disabled request

    add_action(\”wpmu_options\”,\”tiw_display_options_form\”); //show the form to allow how many number of blogs per user

    add_action(\”update_wpmu_options\”,\”tiw_save_num_allowed_blogs\”);//action to save number of allowed blogs per user

    /****Check ,whether blog registration is allowed,and how many blogs per logged in user is allowed */

    function tiw_check_current_users_blog($active_signup)

    {

    if( !is_user_logged_in() )

    return $active_signup;//if the user is not logged in,do not change the site policies

    //otherwise…

    global $current_user;

    $blogs=get_blogs_of_user($current_user->ID);//get all blogs of user

    $number_of_blogs_per_user=tiw_num_allowed_blogs();//find

    //if number of allowed blog is greater than 0 and current user owns less number of blogs */

    if($number_of_blogs_per_user>0&&count($blogs)<$number_of_blogs_per_user)

    return $active_signup;

    else

    return \”none\”;

    }

    /****How many blogs are allowed per user *************/

    function tiw_num_allowed_blogs()

    {

    $num_allowed_blog=get_site_option(\”tiw_allowed_blogs_per_user\”);//find how many blogs are allowed

    if(!isset($num_allowed_blog))

    $num_allowed_blog=0;

    return $num_allowed_blog;//return the number of allowed blogs

    }

    /*****Show the Number of Blogs to restrict per user at the bottom of Site options ****/

    function tiw_display_options_form()

    {

    ?>

    <h3><?php _e(\’Limit Blog Registrations Per User\’) ?></h3>

    <table>

    <tbody>

    <tr valign=\”top\”>

    <th scope=\”row\”>Number of blogs allowed per User</th>

    <td>

    <input type=\”text\” name=\”num_allowed_blogs\” value=\”<?php echo tiw_num_allowed_blogs()?>\” />

    <p>If the Value is Zero, It indicates any number of blog is allowed</p>

    </td>

    </tr>

    </tbody>

    </table>

    <?php

    }

    /**************Save the Number of blogs per user when the form is updated **************/

    function tiw_save_num_allowed_blogs()

    {

    $allowed_number_of_blogs=intval($_POST[\”num_allowed_blogs\”]);//how many blogs the user has set

    //save to the database

    update_site_option(\”tiw_allowed_blogs_per_user\”,$allowed_number_of_blogs);//now update

    }

    ?>

    You can set the number of blog you would like to allow.. its not mine, just wanna share it.. :D

    – Aron

    EDIT: to set the number of blogs, proceed to Site Admin/Options/ then look below..

    #41426

    In reply to: registration fields

    Aron Jay
    Participant

    I’m sorry.. huhu.. :)

    #41425

    In reply to: registration fields

    nicolagreco
    Participant

    It isn’t under gpl, but under copyright, it couldnt be shared, anyway that’s more simple you think to do :)

    #41417

    In reply to: registration fields

    Aron Jay
    Participant

    Great! pls.. share it.. :D

    #41406

    In reply to: registration fields

    Mike Pratt
    Participant

    Michael – I installed the premium plugin and can confirm it does not work fully with BP….yet. It properly sets up the fields for password input BUT, BP seems to override the setting when all is said and done. I was able to login with the password BP emailed me and not the one I set manually. Thinking a tweak to this plugin still has promise though

    #41396

    In reply to: registration fields

    Aron Jay
    Participant

    allowing the users to set their password would definitely make a lot of splogs.. but incorporating a security measures, let say a invitation code will prevent spam blogs..

    please, somebody provide us a plugin for setting up a password for the registration..

    allowing the user to set their own password.. for FREE!

    Thanks.

    #41352
    Sgrunt
    Participant

    ok solved the registration problem!

    #41351
    Ekine
    Participant

    Letting users set their own passwords would be helpful.

    #41350
    Sgrunt
    Participant

    ok, we’re gonna to see the light, i’m making all required changes and keeping them working, if you wish i could write a little documentation after this. I’ve only a question: the signup button now leads to the WMPU registration page and not to the buddypress register. Could you tell me if i’m doing something bad or if this is an upgrade issue?

    Thanx Andy, i’m sure that the final version will be a great success.

    #41348

    In reply to: registration fields

    Michael Berra
    Participant
    #41342
    thebigk
    Participant

    Boy! I want this too!

    #41341

    In reply to: registration fields

    thebigk
    Participant

    I want the password field at the time of registration too!

    #41340
    hyrxx
    Participant

    i was aware of this one, but i am not really interested in paying for it

    but this does show that it is possible

    #41339
    takuya
    Participant
    #41338
    hyrxx
    Participant

    yes, they are all incompatible though, i think the signup process is different, maybe one of these plugins could be modifyed to work for mu

    #41337
    takuya
    Participant

    I’ve tried register-plus, but it seems it’s not compatible with wpmu. I’ve seen other plugins on wporg for letting users set their own passwords.

    #41334
    hyrxx
    Participant

    i want this so bad omg, all my users are the type of people that dont realise that it sends you this stupid random password and that you have to login with it, and then theres changing it….

    i loose a lot of potential users this way just because they cant choose the password they want

    please help us out

Viewing 25 results - 7,476 through 7,500 (of 7,641 total)
Skip to toolbar