Search Results for 'registration'
-
AuthorSearch Results
-
October 8, 2010 at 6:57 am #94571
In reply to: Buddyvents – New Events Plugin
Sven Lehnert
Participant@Travel-Junkie, looks like a great plugin.
I have some question:
I need the possibility to attach an event with a group.
If the group is a private hidden group, the events attached to this group should be visible only to the group members.
Does the group events work also with hidden groups? and will the hidden event be visible for group members in the event calender view?Also I need the possibility, to restrict an event to n attenders. So if for example max attenders == 3, after the 3 attender, the registration need to be closed.
I would be grateful if you could answer me my questions thanks ;-SvenOctober 7, 2010 at 11:48 pm #94544In reply to: buddypress + wp-multi-network issues
Mitch
ParticipantI’m actually having trouble with the mulit-network plugin. The registration page links back to the main site? And all sign-ups are under site #1? Am I missing something.
October 7, 2010 at 10:11 pm #94536In reply to: Limit sign up based on age?
modemlooper
ModeratorI would do an overlay when people hit the registration page. That way before they even sign up they agree to being over 18. Google it. There are a ton of tuts on this type of thing.
October 7, 2010 at 10:03 pm #94534In reply to: Moderate members
Brian Messenlehner
ParticipantPLUGIN UPDATED!!! https://wordpress.org/extend/plugins/bp-registration-options/
October 7, 2010 at 2:48 pm #94488In reply to: problem with custom field radio button
jarvo1980
MemberHi hnla, I set it within the account registration page. So when you register, you select the account type.
October 7, 2010 at 1:28 pm #94479Hugo Ashmore
ParticipantJust have: No can’t create a blog from the initial registration page, but yes can create a blog once signed in which is pretty telling really. You do not have a clean install at work here it is a modified one, remove any and ALL mods made, any plugins that might be messing things up, add the admin bar back in while testing, in fact do not hide the admin bar as it’s still creating mal-formed markup using the admin option to hide it which I thought had been fixed after I raised the issue/ticket; what version of BP are you running?
Please remove my sign up.
October 7, 2010 at 12:45 pm #94477In reply to: BuddyPress Spam
anindyaray
MemberI’m using this plugin : https://wordpress.org/extend/plugins/wordpress-mu-secure-invites/
I have restricted registration only by invitation , yet I got one registration ….
have to done all the spam blocking techniques mentioned here to my installation … but did some definitely
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 8:19 am #94448Hugo Ashmore
ParticipantHave you enabled the registration of both users and blogs in the main site options?
Have you definitely enabled Multi Site capability – is this actually WP 3.0.1 or the now slightly older WPMU you are using?
Have you set DNS wild card entry to allow sub domains to work?
October 6, 2010 at 5:16 pm #94381In reply to: Modifying / Customising the registration process
garrethmcdaid
Memberrequire( ‘./wp-load.php’ );
require( ‘./wp-blog-header.php’ );
require($_SERVER . “/wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php”);These are the dependencies for the BP registration process. Once all 3 are loaded, the form will work.
I have a custom BP installation in which I bypass the main BP index.php file and use WPMU and BP functions as I need them.
To get the slugs to work, I change my .htaccess file as such:
RewriteRule . index.php?slug=1 [L,NC,QSA]
and then my index.php as such:
if (isset($_GET)) require( ‘./wp-blog-header.php’ );
In that way, the BP header is only loaded when a slug is used, and I can bypass it otherwise.
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 6, 2010 at 9:59 am #94342Roger Coathup
ParticipantRe: new members – did you create them in the admin system or through the BuddyPress registration pages?
October 6, 2010 at 9:57 am #94341Roger Coathup
ParticipantTo confirm: you can use custom permalinks without problem in the default wp install.. Changing them as suggested to /%category%/%postname% ?
If that’s the case, try installing BuddyPress plugin again using the automatic install, switch to the bp-default theme, and let us know the outcome
October 5, 2010 at 11:37 pm #94323Don Bernard
ParticipantTried using the wp default theme. All works fine, with BP deactivaed. can post read, categories pages read ok. No errors
October 5, 2010 at 11:29 pm #94321Don Bernard
ParticipantI deactivated BP set the custom permalink as you suggested.
The child BP theme lost all off its menus. However I can select catagories but when ido the page comes up with this error in the post.
Fatal error: Call to undefined function bp_core_get_userlink() in
homehnt12a135wp-contentthemesbp-columnsindex.php on line 28
With BP activated the posts show ok
October 5, 2010 at 11:06 pm #94319Roger Coathup
ParticipantIf you deactivate buddypress..can you create and use custom permalinks in your WordPress install? Try something like /%category%/%postname%/
Do they work, can you go to page, post and category pages with custom permalinks turned on?
You need to get this working on your base WordPress before installing BuddyPress
October 5, 2010 at 7:37 pm #94307In reply to: BuddyPress Spam
More Ivyou
ParticipantI’m using:
– Buddypress Humanity
– WPMU-Block-Spam-By-Math
– SI CAPTCHA Anti-Spam
and
.htaccess
# BEGIN ANTISPAMBLOG REGISTRATION
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .register*
RewriteCond %{HTTP_REFERER} !.*yourhomedomain.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) http://die-spammers.com/ [R=301,L]
# END ANTISPAMBLOG REGISTRATIONOctober 5, 2010 at 5:21 pm #94292In reply to: BuddyPress Spam
Anton
ParticipantAdd this to wp-config.php `define( “BP_REGISTER_SLUG”, “your-registration-slug” );` and change ‘your-registration-slug to your own registration slug.
Edit * the wp-config.php file is situated in the root of your wordpress installation
October 5, 2010 at 4:52 pm #94291In reply to: BuddyPress Spam
anindyaray
MemberI am very new to this , I got this topic’s link from a post by @pcwriter in a topic in buddydev.com
and reading so much about spam/splog and fighting it I’m am overwhelmed and worried and exhausted even thinking about the …….
I have read this topic , understood some and implemented some and also didn’t understood some too …..
I ask a very stupid question !!!
How to change the registration slug ?
who ever replys the above question please oblige this foolish novice (that is me) with a complete walkthrough …
.
I am also using Secure Invite plugin , will this slug change effect this invitation plugin ? if so how to battle it ?
.
Thanks to all and special thanks to @pcwriter for all usefull information …October 4, 2010 at 1:07 pm #94187In reply to: Moderate Signup / Restrict Registration
lespaul
MemberI cant belive there still no solution to this problem. Or is it?
Why cant it just be a core function to BuddyPress that let us moderate signups?October 3, 2010 at 7:29 pm #94142In reply to: BuddyPress Spam
Nahum
ParticipantI removed/commented out the create a blog option from the member registration form while still keeping blog creation on. I only left access to the bp create a blog form for users is_loggedin Only. By tucking it away within the member profile for the member to create a blog later during their profile detailing/editing process, I was able to get to the point where I only needed to delete crap members that get in, not crapmembers + crapblogs that get created at one time wasting all my low number blogIDs!
At the end of the day, if you’re running BPmu you don’t really need to have insta-blog. The option to create a blog is link within the member profile “dash” that they can get around to when they feel settled. I’ve found it’s easier for the user to get their profile up and running first and then breathe and think of a good blog name/url after they’ve logged in for the first time.
but if you really really want instablog, which really isn’t that instant due to the wp-admin of it all. Plus, it’s not really instant because there are too few frontend posting options in member themes for the user to start posting right away, so no need for instablog in registration process, so just indicate to your user that they can do that part later. if you still want blog creation at first registration, then you can keep up the good fight by zapping spammers and their blogs.
October 3, 2010 at 10:22 am #94115In reply to: New User Register Problem
Paul Wong-Gibbs
KeymasterA lot of us try to help answering questions on these boards, but we’re just volunteers doing this for fun. We seem to get most issues replied to within a two day period, which I think is very good.
Regarding above — neither of you have provided sufficient detail (have a look at https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/ for the sort of information we’d find useful). Does WordPress (without any plugins or custom themes installed) send emails correctly, for example on user registration?
October 1, 2010 at 4:27 pm #93991In reply to: How to turn OFF multisite?
@mercime
Participant“The site was originally installed on WordPressMU”
You can convert a WPMU install with only one site to single WP, it’s not hard to do and there are tutorials online on how to go about it. But none take BuddyPress into consideration and you’re on WP 3.0.1, so all bets are off. I would suggest experimenting on test install first and see how that works out, taking into consideration avatar and media upload paths. Main work would be on database. In the meantime, I assume that in your dashboard > Super Admin > Options > only user registration is allowed.
October 1, 2010 at 12:49 pm #93967In reply to: How to turn OFF multisite?
Anonymous User 96400
InactiveAs far as I know you can’t. I’d leave it on and try this here:
http://etivite.com/groups/buddypress/forum/topic/quick-tip-added-banned-email-domain-check-to-multisite-buddypress-registration/#topicSeptember 29, 2010 at 5:40 pm #93782In reply to: Preventing certain email providers from registering
rich! @ etiviti
Participantbumping it up with a simple solution via a filter
http://etivite.com/groups/buddypress/forum/topic/quick-tip-added-banned-email-domain-check-to-multisite-buddypress-registration/#topicthe check is just missing in the buddypress signup process vs multisite
-
AuthorSearch Results