Search Results for 'registration'
-
AuthorSearch Results
-
November 10, 2010 at 2:00 am #97918
junger
Participant@jvoss — are any of your fields required? If so, are they actually forcing users to fill them out?
I was able to add my 2nd and 3rd profile fields to registration, but the “required” fields can be bypassed without filling them out.
November 10, 2010 at 12:14 am #97914In reply to: BuddyPress Spam
jwack
ParticipantWell things were all good for a month, now I am getting slammed every night from 2-6am.
Can someone confirm this is correct (if my site were ebay.com and my registration page was myslug)…
‘
# BEGIN ANTISPAMBLOG REGISTRATION
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .myslug*
RewriteCond %{HTTP_REFERER} !.*ebay.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) http://die-spammers.com/ [R=301,L]
# END ANTISPAMBLOG REGISTRATION
‘Reading back a page or two this is supposed to redirect attackers, I tried entering myURL?something=something but it doesn’t do anything. How can I test this to make sure it working?
Thansk.
November 9, 2010 at 5:56 pm #97880Dennis
MemberI’am with the same problem, when and user try to acess the registration page it redirect to “adress.com/?bp_pc_redir_to=register”
Anyone know how to solve? Alredy try to remove some addons like S2 Member, but still doesn’t working
November 8, 2010 at 8:59 pm #97765In reply to: Registration Approval Plugin
Stacy (non coder)
ParticipantNovember 8, 2010 at 8:40 pm #97761In reply to: How to manually approve a new registration?
Stacy (non coder)
ParticipantI’m using Manually approve plugin for this. It’s not in the wordpress gallery but works on MU. My only problem is that I get thise error with bp themes:” Fatal error: Call to undefined function bp_page_title() in /home/thebaman/public_html/wp-content/themes/custom-community/header.php on line 11″ Any suggestions? Here’s the plugin link : http://mattkern.com/wpmu-manually-approve-new-members-on-local-install/
November 8, 2010 at 8:40 pm #97760In reply to: members// adding 2 slashes instead of 1
damien
Participantthese details i cannot find in my config file.
“Your site isn’t allowing registrations
Which permalink structure did you define? What is defined for the following values:
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘domain.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
(check your wp-config.php)”Im just about ready to call it a day on this if i cant get it working.
November 8, 2010 at 12:51 am #97702In reply to: Found this all new 'Anti-Splog_ anti -spam for BP
djsteve
ParticipantI joined it, and downloaded it – but have yet to use it.. apparently the plugin requires a “phone home” to one of the wpmu dev computers every time someone or some spammer tries to sign up – and you need to have a current subscription to their premium service in order for that part to work… I asked in their forums (as a paid current member) if the other parts of the plugin will still work if I discontinue my monthly paid subscription to wpmu dev premium – and I got no response about that.. so I have yet to install it – as I can not see paying every month for the rest of my life…
there has also been discussion about using the plugin to go through all of your past members and looking for splogers – and apparently it will not work for that – only for new signups…
Right now my hope is that bp-registration options ( https://wordpress.org/extend/plugins/bp-registration-options/ ) will incorporate some of the tricks from TTC ban hammer ( https://wordpress.org/extend/plugins/ban-hammer/changelog/ )and that the buddypress code will actually make it easier for us stop spmmers – right now buddypress ignores wordpress’ ban email domain features – and that just sucks – the bp registration options stops about 80% of the spammers from being able to post – but there is something in the BP code that lets some of them scoot right through, even with hashcash plugin, SI captcha plugin, and the BP registration Options running – buddpress wastes about 3 hours a week of my time simply deleting sploggers… but hey there are new features coming soon right? LOL
November 7, 2010 at 11:42 am #97647auphoria
MemberI need an event plugin that’ll allow user registration, limited registration and event attendee list. Do Jet Event and Eventpress allow those?
November 5, 2010 at 12:56 pm #97549In reply to: More of the Crop Problem!
Bowe
ParticipantS2Member is not the problem.. Unless you do not use the regular BuddyPress signup option and only allow people to signup through a S2Member registration form.
The avatar upload step should always appear. You might have a jQuery conflict but even then you should SEE the upload process, you just would not be able to crop your avatar after upload.
November 5, 2010 at 11:50 am #97547In reply to: Alumni membership site customizations
Ehegwer
ParticipantAs for the usernames, I just added a note to the field that appears on registration. When people are signing up, and that mandatory username field pops up, I make sure users know that this is visible to the entire community. That way they know not to use something private. Most internet users know all about usernames, right?
November 5, 2010 at 1:17 am #97521In reply to: Modifying / Customising the registration process
Boone Gorges
KeymasterCheck out the template file `register.php`, located in `buddypress/bp-themes/bp-default/registration/register.php`. You have a couple possible strategies:
1) Copy register.php to your child theme and add hidden inputs directly in the markup
2) Hook to one of the many do_actions littered through the code to add your fields. Eg
`function bbg_add_reg_field() {
echo ”;
}
add_action( ‘bp_before_registration_submit_buttons’, ‘bbg_add_reg_field’ );`Then you’ll have to catch the data being sent. I recommend doing something like this
`function bbg_grab_reg_data() {
if ( isset( $_POST ) ) {
// do something with the custom data
}
}
add_action( ‘bp_complete_signup’, ‘bbg_grab_reg_data’ );`November 4, 2010 at 8:33 pm #97483In reply to: Modifying / Customising the registration process
wgsgator
MemberI would like to know if there is ANY way to add code to the registration page ( /register )
I want to include code that will automatically take information from the /register page and have it not only register the person on my buddypress site, but also to another site located on another domain.
I have the code that will do what I want, but I can not figure out how to insert it into the “FORM” of the /register page. BuddyPress does not give you a way to add a profile “field” to the registration page that is “hidden” and I need to include a hidden tag into the registration form.
ANY Suggestions???
Gator
November 4, 2010 at 8:12 pm #97469In reply to: Alumni membership site customizations
Boone Gorges
KeymasterYou can’t bypass usernames altogether, as they’re needed for (among other things) BP URLs like example.com/members/boonebgorges/profile. But you could autogenerate them from the user’s fullname. You’d need to hijack the registration process by filtering ‘bp_core_validate_user_signup’, unsetting the error that comes from not having a username, and then generate your own username with a bit of PHP. I’ve done specialized versions of this for clients, but a more generalized one would make for a nice plugin. Any volunteers?
November 4, 2010 at 7:55 pm #97466In reply to: Alumni membership site customizations
Ehegwer
ParticipantPretty easy. Just create some custom registration fields for each of the categories you want to collect. You can make them mandatory if you want, too.
Then to make things private you can use the BuddyPress Private Community plugin, and that would prevent prying eyes from seeing things they shouldn’t.
November 3, 2010 at 8:42 pm #97370In reply to: members// adding 2 slashes instead of 1
teebes
ParticipantYour site isn’t allowing registrations
Which permalink structure did you define? What is defined for the following values:
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘domain.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
(check your wp-config.php)November 3, 2010 at 5:14 pm #97349In reply to: BP Xtra Signup
akingston47
Participant@davewoodbridge – I’m having them same problem – well except that I just get a white screen after signup rather than 404. The registration goes through alright but the user is not added to my mailchimp list.
I’m thinking it must not be compatible with BP 1.2.6. Does anyone have any ideas. @Travel-Junkie – any chance of looking into the problem?
Its a really cool plugin but the main reason I want it is to integrate the signup with Mailchimp.
Thanks,
Andrew.November 2, 2010 at 11:28 pm #97303In reply to: Blogs, how?
pcwriter
Participant1 – Make sure you have multisite enabled. https://codex.wordpress.org/Tools_Network_SubPanel
2 – Enable creation of new sites in the “Registration settings” section under “Super Admin” > “Options”November 2, 2010 at 12:32 am #97188@mercime
Participant@commentluv – if you want the blogs to be subdomain structure as in newblog.domain.com, doesn’t matter where you install BP, what’s important is that you must install WP in main domain and set up WP to create a network using subdomain structure.
November 1, 2010 at 11:44 pm #97180teebes
ParticipantWhat happens when BP_ROOT_BLOG is set to 1, or your default domain.com blog?
Also, what do you have set for DOMAIN_CURRENT_SITE? Is it set to domain.com??
November 1, 2010 at 9:27 pm #97156Andy Bailey
ParticipantI am just searching for an answer to this too. anyone have an idea?
I want all blogs that are created to be a subdomain on the root domain, not a subdomain of the subdomainOctober 30, 2010 at 4:21 pm #97004In reply to: Missing Registration Page
Hugo Ashmore
ParticipantClearly something is very much not correct is it (the error isn’t just with registration link but all links)? have you taken any steps to rectify the issue that we ought to know about that might help us help you or that we can rule out as potential causes?
There are some pretty standard stock responses given in cases like this to troubleshoot issues that you will see in many posts here.
Fist and most importantly disable BP your site must first work correctly with WP i.e permalinks, when that is established then activate BP but BP only! check if problem is manifest if it is then navigate to the permalinks page doing so flushes caches so check again , still not working? revisit permalinks page change settings and save confirm that you can actually write to the .htaccess file do you see instruction that WP could not save to .htaccess and then list the details that need to go in the file?
if WP and BP work as expected start activating any plugins one by one checking every time to see if problem arises so that if it is a plugin you know which one caused the issue.
I suspect that this is a plugin issue, but those steps above should help you narrow down where the issue is if not correct it.
October 30, 2010 at 3:12 pm #97001In reply to: Missing Registration Page
Jonathan Garnett-Smith
ParticipantAnyone have any ideas? I’ve searched the forums and can’t find any support?
October 29, 2010 at 3:39 am #96865LPH2005
ParticipantOK…I read through the codex…but it still doesn’t solve my problem of why when I click on register, it directs me back to a home page.
Most likely you are logged into your site when you are trying that address. I was able to reach your registration page with the link http://exaholics.com/register/
October 27, 2010 at 6:08 am #96668In reply to: disable core field ”name” in registration form
Gabriel Fowler
ParticipantI too, am looking to simplify/modify the registration page. I would like to control the fields, is there a plugin for this? I would like to remove the email as a required field. I’m running the default BuddyPress theme. Can anyone help with this? I just want username and password. I have used CIMY Extra Fields, but it seems to not appear in BuddyPress installations, and it does not allow for removing the default fields. If anyone can also tell me how to force avatar or photo uplaod at registration, please post. Much appreciated, everyone.
October 25, 2010 at 4:58 pm #96455Glenn Kilpatrick
ParticipantDoes the fact that some recieve emails whilst others dont, confirm that my server is sending out the mail ? I recieve email notification of all onsite activity.
With regards to the confusion of capital letters when signing up many of the people I have asked to help me with my site have run into problems. If people are having difficulties because the sign up process is not running smoothly then I fear people just wont bother. When your trying to set up a new community this is a risk you just cant afford to take as every potential new member is very valuable.
In this topic :
http://www.whitbyseaanglers.co.uk/forum/index.php?topic=17759.0
on my fishing forum, I have asked people to help me out. From about 8 people over 50% of them have run into problems.
-
AuthorSearch Results