Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'Create an Account'

Viewing 25 results - 726 through 750 (of 1,118 total)
  • Author
    Search Results
  • #95948
    Paul Wong-Gibbs
    Keymaster

    I’d agree at least 64Mb. I think you can get away with 32Mb if it’s a low-traffic site, but it depends on how much code is loaded from any other active plugins and themes.

    #95929
    Hugo Ashmore
    Participant

    20mb is far to low – try 64 or 96 or as high as you can provide but not so high that you allocate all your available system memory if a script does misbehave as that will result in the OS crashing

    #95928
    John Horniblow
    Participant

    Hi, hnla, thanks for the advice . I will deactivate BP, I have ascertained that WP is working as I can create user accounts , publish etc ( no issues ) I had already created a php.ini with 20 mb, its single line of code reading as follows memory=20MB so I will go back through the plugins to see if there’s a conflict. Unless you think I need to increase the memory allocation. I am hosted on 1and1 , which has caused a few headaches in setting it up , that’s been corrected by adding the handlers into .htaccess as follows
    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php
    What I saw in the .htaccess was that W3 total cache plugin had written a lot code into it , as far as I can see its working.

    #95800
    Hugo Ashmore
    Participant

    500 is an internal server error or misconfiguration it might be caused by to low a php script memory value judging by the sound of the profile field page error.

    As always to troubleshoot first disable BP confirm that WP works as expected without issue, in this case that you can register accounts without issue, when that is confirmed as ok proceed to enable/activate BP but no other plugins just plain vanilla BP along with the default theme NOT a custom one, confirm whether issues arise.

    You might possibly have syntax errors in .htaccess but if so I would expect issues from the get go as it’s read on page load .
    If possible confirm the amount set for PHP script memory in php.ini.

    #95776
    Webbasica
    Participant

    So what I have to do is enable “Logged in users may register new sites.” under “Registration Settings”?

    Right now I have the first option checked:
    1- Registration is disabled. (checked)
    2- User accounts may be registered.
    3- Logged in users may register new sites.
    4- Both sites and user accounts can be registered.

    Since I’m using BP, and I want my users to be able to create their own blogs, which one should be checked?

    #95726
    frlane
    Member

    Yes, I did read that, and I am on Bluehost. I installed ‘Mail From’, but there is still no confirmation e-mail when I try to sign up. I did notice that the one account I created did exist, there was just no e-mail confirming it. Also as a side note, when they put in their info and submit, the page doesn’t change. It stays on the page with their entered info, no confirmation that their submission went through

    #95664
    @mercime
    Participant

    @jhansensd http://testbp.org/ has the default theme and your users don’t have to go to the backend to log in. As for registration, it’s the “Create an account” in same login panel on the sidebar. You can can easily create a Register Now button in your BP child theme if you prefer. Users do not install bbPress, the Site Admin does.

    Recommend that you read the “Getting Started” section in Codex – https://codex.buddypress.org/home/

    #95538
    paulhastings0
    Participant

    It sounds like you would need create another folder in your root install of wordpress and title it something like “community”. Then create a bran-new WordPress install in the folder and then install BuddyPress. You’ll effectively have 2 WordPress installs. The one on your “main” site will just be what people look at. But the 2nd install in your community folder will be where people will create accounts, interact, i.e. basically everything else that BuddyPress does.

    #95534
    Jennifer Ross
    Participant

    Hi! Thanks for your replies!

    Yes Paul, the problem still remains after the users log in. I have some test accounts, and after logging in each of those accounts, their activity does show up in the stream, but still on the members tab it shows no users. (this is the case for both the “existing users” and “new users” that I created after the switch.) When a new user registers, or an old user signs in for the first time, I do notice that the wp_bp_xprofile_data table updates to show the user added, however the “members” tab still shows “Sorry, no members were found.”

    I looked at the filters Tom… good thought, but no luck. :-( Still shows no members with each of the filters selected.

    I reinstalled BuddyPress and dropped all the old tables and pretty much started from scratch as far as BP is concerned this afternoon with a fresh install. Still having the same issue.

    I am at a loss. Any other ideas out there?

    Thanks,
    Jennifer

    James
    Participant

    ok, with thanks to http://cleverness.org/2010/08/08/add-user-types-to-wordpress-and-buddypress/ found another starting point:

    Put this in you BuddyPress theme /registration/register.php file:

    `

    User Type A
    User Type B
    User Type C

    `

    Put the following code in your theme’s functions.php:

    `<?php
    /* Add sign-up field to BuddyPress sign-up array*/
    function bp_custom_user_signup_field( $usermeta ) {
    $usermeta = $_POST;

    return $usermeta;
    }
    add_filter( ‘bp_signup_usermeta’, ‘bp_custom_user_signup_field’ );

    /* Add field_name from sign-up to usermeta on activation */
    function bp_user_activate_field( $signup ) {

    update_usermeta( $signup, ‘signup_type’, $signup );

    return $signup;
    }
    add_filter( ‘bp_core_activate_account’, ‘bp_user_activate_field’ );

    function synchro_wp_usermeta($user_id, $password, $meta) {
    global $bp, $wpdb;

    $type = $meta[signup_type];

    update_usermeta( $user_id, ‘signup_type’, $type );

    }
    add_action( ‘wpmu_activate_user’, ‘synchro_wp_usermeta’, 10, 3);
    `

    This should create selection of account types on the signup page.
    If anyone knows how to update profile-loop.php, so that every account type would have different profile group, please share your opinion.

    thanks.

    #95027

    I dont really know what kind of other info I could give?

    Did you create an account on there? You’re saying when you go here NSFW: http://www.punkrockprincess.com/members

    you can search for johnnyscience & I’ll pop up?

    When I do it I get this:

    Untitled-3.png

    And it doesnt matter who or how I search for someone, I still get the same issue.

    ?

    There’s got to be something that could mix it up?

    No other search gives me a problem.

    #94884
    Active Citizenship
    Participant

    OK. Thanks to both of you. I was actually already using a WP theme and even after BP and all plugins were deactivated, I still was not able to enter a blog (even on the backend).
    So I contacted my site provider and they fixed by re-applying my account’s wildcard settings. I however needed to clear my browser’s cache and cookies before I could reach my subdomains (blogs) properly.

    Now back to the prob I was originally trying to address, getting all the posts on the subdomain blogs to appear on my main site page. It is unclear to me if Sitewide tags can actually do this
    ( see discussion https://wordpress.org/support/topic/one-blog-streaming-multiple-smaller-ones). All posts do appear on the Activity page. The problem would be resolved if I could just get my Activity page to appear as my main page :)

    Thoughts?

    @mercime
    Participant

    “The only problem I’m having is nobody can “create an account” or cannot register”

    If you’re on WP Multisite – go to Super Admin > Options > Allow users to register
    If you’re on single WP – go to Settings > General Settings > Membership – allow anyone to register

    #94575

    In reply to: Profile types

    James
    Participant

    ok, as I understand, the easiest way for me to get it done, is to place radio buttons in the base group and create x profile groups, each of groups will be called after “if(bp_get_member_profile_data( ‘field=account type’ ) == ’name’) :
    ” for each particular profile type from radio buttons.
    It will make only radio buttons to appear on the signup, but entering code into public and edit profile sections will force user to see only profile group, corresponding to his radio button?

    probably only I understood what I wrote :)
    should I use (bp_the_profile_group() == “group number”) function?

    #94567
    Janet Standeford
    Participant

    If the update fixes this, will it send out validation emails for the ones who already tried to sign up?
    I would just create them in new users but it says the addresses are already submitted.

    #94517
    Hugo Ashmore
    Participant

    To get you started create three new profile fields for users to complete, probably radio button choices, the users will select one of these at signup? make the selection obligatory.

    Now in the members profile loop you will use a simple check to determine which field has been returned or selected by the user and display whatever particular elements you want for that selection.

    The code used here is not the type you want, in a profile loop it’s easier as you can run checks using something like:
    if(bp_get_member_profile_data( ‘field=account type’ ) == ‘special’) :
    ‘ Do stuff based on the type above’;

    #94493
    jarvo1980
    Member

    Hi hnla,

    The above seems to work just fine for me. I created the custom profile field account type and then using the above I can do what I need too.

    Not sure if it helps anyone but certainly does the job for me!

    Thank you, your reply certainly kick started the grey matter!

    #94490
    Hugo Ashmore
    Participant

    Edit// just saw your last post- not sure how that slipped past :) so you are using xprofile field data and so yes your first example won’t work I think you’re on the right track now and it is easier if in a members loop. There was a post earlier today discussing this. Have a search back about 20 odd posts

    Then we would need to know the mechanism you’re using to pass that variable around I guess.

    When you say “select account type” what exactly do you mean, is this a snippet of custom code you have written or are you using the custom profile fields to create new profile fields? If new profile fields ( the best way I would have thought ) then you are taking the wrong approach to fetching those fields back.

    #94475
    Tao JIN
    Participant

    sorry for not clarify issues.

    First,
    In Registration Settings, I selected “Both sites and user accounts can be registered.”
    And When I sign up a new test account , and select to create a new blog with a given sub domain name.
    But, there is no new blog created , the test account only become a member of the main site.

    please check it from here: http://usenode.com/register/

    you can test it.
    Thanks.

    #94461
    Hugo Ashmore
    Participant

    This isn’t an issue I’ve come across, you shouldn’t have a problem, that you say tings work with BP disabled yet not when BP is enabled is odd, I presume you have created a sub-domain under the WP setup, when activating BP BP should pick that blog up and show it under th members account/profile as a user blog.

    #94352

    In reply to: BuddyPress Spam

    jwack
    Participant

    I spent some time yesterday to try to stop the constant flow of spam users and blogs being created on my site. Here is what I did…
    1- deleted extra registration.php in bbpress folder
    2- changed reg. slug
    3- installed humanity
    4- installed Si Captcha
    5- added code from above to htaccess

    I am still get about 20-30 per day.
    Is there a way to tell if these are humans or bots creating these accounts and blogs?
    I don’t know what else to do, any ideas? ( I really don’t want to disable blog creation during registration)

    #94224
    Beverly
    Participant

    Thank you Paul for responding but answer the questions in detail here:
    1. Which version of WP/MU are you running? Answer: WP 3.01
    2. Did you install WP/MU as a directory or subdomain install? Answer: Using it on my main domain
    3. If a directory install, is it in root or in a subdirectory?
    4. Did you upgraded from a previous version of WP/MU? If so, from which version? Answer: when it says upgrade I click that. So I guess it supdated.
    5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Answer: Yes
    6. Which version of BP are you running? Answer: It says..Buddy press 1.2.5.2
    7. Did you upgraded from a previous version of BP? If so, from which version? Answer: Every time it says update I always click that…So maybe..??
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Answer: Buddy press 1.2.5.2, Live journey importer, akismet, fast secure contact form 0.2, OPML Importer 0.2, Post video player slideshow and photo gallery 1.79, Rss Importer, simple social sharing widgets and incons 0.2, Word Press Importer version 0.2 and WP Touch 1.9.19.1
    9. Are you using the standard BuddyPress themes or customized themes? Answer: Standard
    10. Have you modified the core files in any way? Answer: I don’t think so…Didn’t touch anything…Just beginning to do this…
    11. Do you have any custom functions in bp-custom.php? Answer: I don’t think so
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Answer: Using Hostmonster.com is my web host part of their menu control panel comes with concrete5 and under concrete5 I installed buddy press…Then that’s all I did
    13. Please provide a list of any errors in your server’s log files. Answer: The only problem I’m having is nobody can “create an account” or cannot register…And of course no email was sent for verification and account is obviously not created..
    14. Which company provides your hosting? Hostmonster.com
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? My server is running? I’m using century link previously Sprint…Mozilla fox and Explorer…Windows XP

    So I guess I answered all the questions…That’s all I did…And can’t create an account…I did it to test the application…Now go to my website hostpugs.com create an account and see what’s going on…my email: whiteflower12004 @yahoo.com….Thank you!

    #94085
    Beverly
    Participant

    Jok..I’m having the same problem…Please go to my site and create an account and you know what we’re talking about..http://www.hostpugs.com/ I hope they answer this problem…3 days and no response?

    #93687
    paduy
    Member

    sorry google translate came on in between this is the english version

    My hostingprovider helped me out today and now i got bp working.But is there somewhere a tutorial where i can learn somethings about it like ow to work with it.Also i’d like to know after a created an account i get the message that an activation mail will be send to my emailadress but till now (somewhat half an hour)i didn’t recieve anything.Do i do something wrong

    #93621

    In reply to: More CSS madness

    LPH2005
    Participant

    @paulhastings0 it’s a mixture of BP-Album Media, a nightly build, but I did not change the database from a previous installation. Next, some code was copy/pasted, modified to show the photos and videos along with a widget for login/logout differences.

    `

    <?php
    global $bp, $featured_template;

    // STEP 1: Run the default query. It will use the options set in the admin back end.
    bp_album_featured_query_items();

    $row_count = 0;

    // STEP 2: Test if items were found. If so, open the CSS block.
    if ( bp_album_featured_has_items() ) : ?>

    <?php
    // STEP 3: Iterate through the items the query has found, printing each one out.
    while ( bp_album_featured_has_items() ) : bp_album_featured_the_item(); ?>

    <?php

    $row_count++;

    if($row_count == (int)$bp->bpa->options){
    echo ‘

    ‘;
    $row_count = 0;
    }

    endwhile;

    // STEP 4: Close the CSS block. ?>

    <a href="” class=”media-image”>

    <?php

    endif;

    ?>

    <form name="login-form" id="sidebar-login-form" class="standard-form" action="” method=”post”>

    <input type="text" name="log" id="sidebar-user-login" class="input" value="” />

    <input type="submit" name="wp-submit" id="sidebar-wp-submit" value="” tabindex=”100″ />

    `

Viewing 25 results - 726 through 750 (of 1,118 total)
Skip to toolbar