Search Results for 'Create an Account'
-
AuthorSearch Results
-
October 21, 2010 at 8:30 pm #95948
In reply to: create account or register – 500 error
Paul Wong-Gibbs
KeymasterI’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.
October 21, 2010 at 6:43 pm #95929In reply to: create account or register – 500 error
Hugo Ashmore
Participant20mb 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
October 21, 2010 at 6:39 pm #95928In reply to: create account or register – 500 error
John Horniblow
ParticipantHi, 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.October 21, 2010 at 7:30 am #95800In reply to: create account or register – 500 error
Hugo Ashmore
Participant500 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.October 20, 2010 at 10:43 pm #95776In reply to: BP advertises “WordPress Blogging” .. but how?
Webbasica
ParticipantSo 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?
October 20, 2010 at 4:43 pm #95726In reply to: Confirmation e-mails aren’t being sent.
frlane
MemberYes, 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
October 20, 2010 at 3:00 am #95664In reply to: BuddyPress Login Dialog/Interface
@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/
October 19, 2010 at 4:14 am #95538paulhastings0
ParticipantIt 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.
October 19, 2010 at 2:48 am #95534In reply to: “Sorry, no members were found.”
Jennifer Ross
ParticipantHi! 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,
JenniferOctober 13, 2010 at 3:38 pm #95065James
Participantok, 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.
October 13, 2010 at 8:29 am #95027JohnnyScience
MemberI 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:

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.
October 11, 2010 at 10:18 pm #94884In reply to: I can create a blog but not access it
Active Citizenship
ParticipantOK. 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?
October 10, 2010 at 1:18 am #94727@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 registerOctober 8, 2010 at 8:04 am #94575In reply to: Profile types
James
Participantok, 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?October 8, 2010 at 4:24 am #94567Janet Standeford
ParticipantIf 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.October 7, 2010 at 7:20 pm #94517In reply to: problem with custom field radio button
Hugo Ashmore
ParticipantTo 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’;October 7, 2010 at 3:14 pm #94493In reply to: problem with custom field radio button
jarvo1980
MemberHi 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!
October 7, 2010 at 2:58 pm #94490In reply to: problem with custom field radio button
Hugo Ashmore
ParticipantEdit// 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 postsThen 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.
October 7, 2010 at 12:28 pm #94475Tao JIN
Participantsorry 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.October 7, 2010 at 9:37 am #94461Hugo Ashmore
ParticipantThis 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.
October 6, 2010 at 1:16 pm #94352In reply to: BuddyPress Spam
jwack
ParticipantI 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 htaccessI 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)October 4, 2010 at 10:55 pm #94224In reply to: New User Register Problem
Beverly
ParticipantThank 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 XPSo 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!
October 3, 2010 at 3:49 am #94085In reply to: New User Register Problem
Beverly
ParticipantJok..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?
September 28, 2010 at 6:41 pm #93687In reply to: activation email don’t recieve him
paduy
Membersorry 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
September 28, 2010 at 6:19 am #93621In 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(); ?><a href="” class=”media-image”> <?php
$row_count++;
if($row_count == (int)$bp->bpa->options){
echo ‘‘;
$row_count = 0;
}endwhile;
// STEP 4: Close the CSS block. ?>
<?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″ />
`
-
AuthorSearch Results
