Search Results for 'registration'
-
AuthorSearch Results
-
August 1, 2011 at 8:25 am #117308
In reply to: Avatar Upload Problem During Registration
mattcav
Member@enderandrew, of course. are 755 for each folder. I’ve tried to switch to 777, no way.
I think it’s not a problem about dir premission: uploading avatars through profile->change avatar (instead last step on registration process) it works like a charm.
August 1, 2011 at 4:23 am #117292In reply to: Avatar Upload Problem During Registration
enderandrew
MemberHave you guys checked the file permissions of the avatar folder to make sure Buddypress can write files there?
August 1, 2011 at 3:09 am #117288In reply to: Avatar Upload Problem During Registration
lifemore
ParticipantI am still hoping to get some help with this. The above problem that is.
Pleeeeeaaaase?
Thank you so much;
July 29, 2011 at 11:21 pm #117184In reply to: Registration email form-field
Tammie Lister
ModeratorAnything WordPress could be creeping over and not playing well is my worry to be honest. I’d really recommend as much as possible trying a default set up. Not sure what theme you are using but defaulting there could also be good as a back to basics test. Least if you get it working you can build up from there?
July 29, 2011 at 11:08 pm #117178In reply to: New Users unable to register –
IdahoFallsNOW
MemberThanks for the replies. Yes, I was able to check a box so that anyone could register, and then magically a registration box appeared! And it works… almost…. now I can’t get the new users to receive the confirmation email to activate their accounts. Any suggestions?
This is a single site with BuddyPress installed. Thanks!
July 29, 2011 at 5:30 pm #117165In reply to: Stop the Sploggers
Andrea Rennick
ParticipantThe spammers google for your registration page. If they can’t find it there….
And I’m suggesting it as one to help – not the be-all end-all.
Do that in conjunction with other things and it does help. I could also argue how captcha doesn’t work well for human too I’m not a fan.
July 29, 2011 at 5:28 pm #117164In reply to: New Users unable to register –
Andrea Rennick
ParticipantDid someone turn off registration? Go check and make sure it;s turning on under Settings.
July 29, 2011 at 2:02 pm #117156In reply to: Stop the Sploggers
igeekout
MemberActually, changing your registration slug wont do much. The spammers will just find the page again and then youldd have to change your registration slug again.
Its best to add capthca to your registration and to your comments.
July 29, 2011 at 1:46 pm #117153In reply to: Stop the Sploggers
Andrea Rennick
ParticipantChange your registration slug and everywhere you’ve linked to the signup page make sure it has a nofollow on it.
July 29, 2011 at 11:56 am #117150In reply to: Activation Code after New Member Registration
igeekout
MemberI have a similar issue where users sign up, get the activation email but are sent to a page asking for an activation key to be entered in an input field. One member on this site told me the key is the in the url. Sure, I realize that. But how do the users know that?
July 29, 2011 at 3:20 am #117146In reply to: Activation Code after New Member Registration
KimMC
MemberIt’s called BP Autologin on Activation. http://buddydev.com/plugins/bp-autologin-on-activation/
July 28, 2011 at 8:28 pm #117113@mercime
Participant@ginreviews WP/BP versions? Are you using bp-default child theme, WP/BP Template pack or custom BP theme? Is this a new install or is it an existing install with registration going bonkers recently?
July 28, 2011 at 2:42 pm #117081In reply to: Activation Code after New Member Registration
ginreviews
MemberWhat is the name of the plugin? I am having the same issue as discussed in this post.
July 27, 2011 at 12:04 am #116983In reply to: Only members get profiles
christophg
MemberOn this same vein, can I make free members get a different registration form. Lets say with just the “base” profile fields to fill out for my records?
July 26, 2011 at 11:54 pm #116982In reply to: Profile rating system
christophg
MemberI am having the same problem with it currently. It says no post exists when I follow the link. I think the framework for it is good though so I will play with it a bit and see what I can do.
I feel you man, paying work comes first. Hopefully this internet business will be up and running though so I can work from home!
Say, you wouldn’t have any thoughts on how to facilitate multiple registration forms that are compatible with buddypress but use S2members membership levels to decide which registration form to go to? Just a shot in the dark lol.July 26, 2011 at 11:02 pm #116980In reply to: Avatar Upload Problem During Registration
lifemore
ParticipantYes, I am using the latest version of WordPress, the latest version of Buddypress, and latest version of Suffusion theme. There was no problem a while ago, but now the avatar does not upload on the first page even though it shows successful avatar upload
I truly appreciate your help.
July 26, 2011 at 9:46 pm #116978In reply to: Twitter for BuddyPress Poll
Boone Gorges
KeymasterI’d rather not be forced to use my Twitter login for WP authentication. It’s nice when it’s an option, but to force it might raise privacy concerns, among other things. I would prefer to have the option at registration: use a Twitter login for authentication and get my Twitter account synced automatically, or create a standalone WP login, which can later be linked to my Twitter account if I so wish. (This has the added bonus of allowing me to associate with a different Twitter account at a later date if I want to change.)
I recently set up a site for baby pictures, and managed to give users the choice between FB login and a dedicated WP login. Maybe it’d be helpful? http://teleogistic.net/2011/07/building-a-baby-photo-site-with-wordpress/
July 26, 2011 at 9:28 am #116934In reply to: Avatar Upload Problem During Registration
July 26, 2011 at 7:48 am #116930In reply to: Avatar Upload Problem During Registration
lifemore
ParticipantI also have the same problem. Can you please, please help?
Thank you so much;
VidaJuly 25, 2011 at 7:41 pm #116906In reply to: Profile rating system
christophg
MemberWell I actually found a plugin file for just that purpose! it was created by justbishop.
`<?php
/*
Plugin Name: User Feedback Page
Plugin URI: http://URI_Of_Page_Describing_Plugin_and_Updates
Description: Creates a post for each user on registration to which other members may add comments to. The new post is titled with the user’s login name for easy linking from user profiles. Check out the plugin CMS Press for creating your custom post type. Idea by justbishop, code HEAVILY guided by templaedhel (thanks again!)
Version: 0.0.1
Author: templaedhel, justbishop
Author URI: http://thingscosmomakes.com/, http://www.clothunderground.com
License: GPL2
*/add_action ( ‘user_register’, ‘create_feedback_page’ );
function create_feedback_page($user_id){
$user_info = get_userdata($user_id);
$new_post = array(
‘comment_status’ => ‘open’, /* important, probably shouldn’t change */
‘post_title’ => $user_info->user_login, /* titles the post */
‘post_content’ => ‘Read what others have to say about us! If we have worked with you please feel free to rate our performance!’,
‘post_status’ => ‘publish’, /* go ahead and publish, right? */
‘post_date’ => date(‘Y-m-d H:i:s’), /* Just the timestamp */
‘post_author’ => ‘1’, /* ID of author. Set to admin to prevent users from editing the feedback comments on themselves */
‘post_type’ => ‘feedback’, /* name of custom post type (must be created first) */
);
$post_id = wp_insert_post($new_post);
}
?>`July 25, 2011 at 2:27 pm #116885In reply to: Avatar Upload Problem During Registration
mattcav
MemberSame identical situation:
* WP 3.2.1
* BP 1.2.9During registration, Users try to upload image. They crop it, system shows successiful message, but displays mistery man (standard avatar) (no file are uploaded in /avatars)
If this user log in, goes to his profile and changes avatar through the profile settings panel, it works like a charm.
Anyone with a solution?
AnyJuly 25, 2011 at 1:16 pm #116883In reply to: Buddypress Template File Corresponding…
frenx4u
ParticipantYou are editing the wrong file.
If you have buddypress and buddypress template pack and still the buddypress files are shown but not with your theme layout, then do the following steps:go to your theme location: wp-content/themes/ yourtheme
do you find there the following files & folders
activities, blogs, forum, members, groups, registrationin each of them, you will find either home.php or index.php in particular.
these file will have the code likeget_header()
………
………..’this is the code segment you need to replace’
if you find any extra code in between this two lines, save them in a notepad. After doing the following steps, bring those extra codes ‘if any’, back in this segment after replacement.
……….
div id=”content”you need to replace this code segment with that of your theme,
now open wp-content/themes/ yourtheme / index.php
and copy the code segment
php get_header()
………
………..
……….
div id=”content” class=” …………………………………………………….Paste this code segment to the area where mentioned above.
July 24, 2011 at 9:00 pm #116854In reply to: Filtering out Activity Stream stuff
dude
Memberok I’ve placed the above code in activity-loop.php and it looks to saving me the trouble of manually deleting new member registrations group joining etc which is great! but does not block any posts made to my groups unfortunately (beggars can’t be choosers lol)
I guess I’ll have to look into other areas to prevent group posts from showing up in the activity stream, any guidance would be most helpful !!
July 24, 2011 at 5:11 am #116835@mercime
Participant@careercreatrix Before there was WP Multisite, there was WPMU(multi-user) a long story https://wordpress.org/news/2010/06/thelonious/
== 1) Do i have to “create a group” in order for people to be able to join my discussion forum? I just want one plain old discussion board, with multiple topics. ==
Yes, at this time you would have to create a group and be a member of that group in order to post forum topics. If you only want the forums without the social networking feature, bbPress the plugin is in beta3 https://bbpress.org/blog/
== 2) It says you have to have registration enabled, so people can register. How do I make sure it’s enabled? ==
Go to dashboard Settings menu > General > Membership – check “Anyone Can Register”
== there isn’t a “Create a Group” tab when I click on “Groups” in the top bar, ==
You will find the “Create a Group” link if you go to your site’s /groups/ directory, it was never included in BP Admin Bar. So if your WP is installed in domain root i.e. http://yoursite.com/, you go to http://yoursite.com/groups. Beside the page title, Groups Directory, you’ll find the link to create a group in the bp-default theme. Or, you can go directly to the URL
http://yoursite.com/groups/create/step/group-details/ – replace yoursite.com with your domain name.July 23, 2011 at 4:25 pm #116797In reply to: Password Reset/Change Problem
@mercime
Participantwp-includes/registration.php has been deprecated since version WP 3.1. What WP/BP versions are you on then? Plugin or theme conflict. Deactivate all plugins except BuddyPress and change to bp-default theme.
-
AuthorSearch Results