Search Results for 'registration'
-
AuthorSearch Results
-
November 13, 2009 at 7:16 am #56637
In reply to: buddypress registration not working in ie7
LinkTampa
ParticipantI figured out the problem, it was not with buddypress but had to do with another jQuery item I had in the header.php. I figured it out and we’re good to go.
Thanks for all your help guys, I really appreciate it!!!
November 13, 2009 at 6:45 am #56633In reply to: buddypress registration not working in ie7
LinkTampa
ParticipantThanks for all your guys help, I appreciate the fast responses to my post. If you find a fix please let me know!
Manoj – I understand what you are saying, but I need a fix so users do not have to do this. If every user that experiences this problem has to do this, then that will cause the site not to be user friendly and it would not be a real fix. There has to be a hack for the js. I appreciate the advice though, thank you!
November 13, 2009 at 6:38 am #56629In reply to: buddypress registration not working in ie7
John James Jacoby
KeymasterLooks to me like IE8 thinks jQuery library didn’t get included. Either that or it’s having a hard time seeing that “j” is jQuery. I’ll try to take a look at this soon.
November 13, 2009 at 6:21 am #56626In reply to: buddypress registration not working in ie7
talk2manoj
ParticipantTry by turn off your Java Script error in IE. To do that follow this link
November 12, 2009 at 6:33 pm #56573In reply to: Pb and fix for uploading avatar during registration
John James Jacoby
KeymasterUser and avatar information is stored in wp_signups before the account is activated, and it is moved into the user, usermeta, and xprofile tables upon activation.
It would seem you’re experiencing a different issue than what you describe.
For now I’m closing this and linking it to…
https://buddypress.org/forums/topic/avatar-upload-issues?replies=1#post-28737
@titeufpld, if you’d like me to reopen this topic for some reason, send me a PM.
November 12, 2009 at 11:51 am #56536In reply to: What do your spam signups look like?
Sven Lehnert
Participantcount me in…
brentschroeder1963
Some month ago, I change my registration process, and become spam free.
Just sometimes, I had a spam registration, but thy never had a user role.
Also I never get a registration mail.
And they not able to create a blog, or even post.
But this morning I have a new user: brentschroeder1963
Also with registration mail, a new blog …..
brentschroeder1963
November 12, 2009 at 8:51 am #56530In reply to: What do your spam signups look like?
Michael Berra
ParticipantThanks Chouf
I just implemented the code above (just like it is, is that correct???) a couple minutes ago… Since then I already have to spam-registrations and blog-creations…
So, I will try the wp-ban also…
November 12, 2009 at 8:24 am #56529In reply to: What do your spam signups look like?
danbpfr
ParticipantI have had the same issues as you all these summer.
Since approx. 2 mounth i have nomore fake user or fake blog. And no spam too !
I erased daily and manually all spammer reference in my DB. Mail adrress, blog content, names and so on… An endless job with no success at least. And i don’t use Askimet. I can’t explain why (or only in french), but i don’t.
I’ve installed wp-spamfree (who blocked 45 spam comments since i installed it in july), invisble-defender (who blocked 76 spammer in the same period) This is really less
I use also wp-ban, here i have given some ip ban’s instructions, banned some referrers like these:
and some wildcarded user agents like zhanglingjuan*
in my htaccess i have this, wich is very powerfull(i think it is this who reduced mostly my spammers)
Test it and see in your log file how many “libwww-perl” call you receive in a day and see what is in the url. You will stunning !
# Blocking access from libwww-perl, and blocking urls that include “=http:†to eliminate bot attacks
RewriteCond %{HTTP_USER_AGENT} libwww [NC]
RewriteRule ^(.*)$ - [F,L]
RewriteCond %{HTTP_USER_AGENT} www-mechanize [NC]
RewriteRule ^(.*)$ - [F,L]
RewriteCond %{REQUEST_URI} !(wp\-login\.php|\/wp\-admin\/) [NC]
RewriteCond %{QUERY_STRING} ^(.*)=http [NC]
RewriteRule ^(.*)$ - [F,L]
# END ANTISPAMBLOG REGISTRATIONNovember 12, 2009 at 2:01 am #56514In reply to: Register vs wp-signup : passwords vs signup question
r-a-y
KeymasterThe register page can be renamed by changing the registration slug.
Add this line somewhere in your wp-config.php:
define( 'BP_REGISTER_SLUG', 'yourregisterslug' );
Change ‘yourregisterslug’ to whatever you want it to be.
November 10, 2009 at 9:33 pm #56416In reply to: Force Email Registration with Facebook Connect
Devrim
ParticipantThere are two ways to do it, first you can go to facebook apps settings, and create a callback upon successful login, and on that callback page you ask the user his email. Or you may setup your account that facebook will ask user if your app is allowed to send him direct emails.
– first case, you need to store the email somewhere else on wp database, since user_email section will be occupied by fb provided proxy email. i don’t know if it breaks the fb-connect functionality if you overwrite that with user’s real email.
– second case, facebook_proxy+2342423+bla@facebook.com sort of email becomes a gateway to your user. you will see that email on user_email section on wp database, if you send an email however, before user approves through fb, it will bounce.
i haven’t implemented it, this is kind of my research before fb revised their api, so I apologize in advance if it’s not accurate.
November 10, 2009 at 6:22 pm #56383Lriggle
ParticipantWorked first time! Thanks for the tip!!!
November 10, 2009 at 1:35 pm #56359In reply to: wp-signup.php is a blank page
circuit
Participanti’m adding this to functions.php and it’s killing my bbpress integration (which calls wp-load.php in the header). i just get a white page.
/* Kill the wp-signup.php if custom registration signup templates are present */
function bp_core_wpsignup_redirect() {
if ( false === strpos( $_SERVER['SCRIPT_NAME'], 'wp-signup.php') )
return false;
if ( locate_template( array( 'registration/register.php' ), false ) || locate_template( array( 'register.php' ), false ) )
wp_redirect( bp_root_domain() . BP_REGISTER_SLUG );
}
add_action( 'signup_header', 'bp_core_wpsignup_redirect' );November 10, 2009 at 5:43 am #56343In reply to: fullname vs username vs first + last name…
Mike Pratt
Participant@Erich73 I created a Last_Name and First_Name field so that I could do directory stuff just like you said. The only thing we’re stuck with is the Display name field, which some find annoying and some actually like. Considering all the over the top registrations we have all done before, this isn’t the worst. Facebook has it figured out, using emails as usernames and First name and Last Name when appropriate because it is more conducive to engagement. That’s the most important thing: what gets your users to engage – seeing LadiesMan269 doing an action or John Smith?
November 9, 2009 at 9:46 pm #56313In reply to: Force Email Registration with Facebook Connect
Kevin Pine
ParticipantI think you mean weddingwire.com
http://www.weddingwire.com/wedding/UserSignUp
This is functionality I am looking for too.
November 8, 2009 at 12:54 pm #56182In reply to: wp-signup.php is a blank page
Xevo
ParticipantNo, you have to enable user registration in the administration panel.
By the way, make your posts clearer, I didn’t understand what you meant.
November 8, 2009 at 4:30 am #56165In reply to: wp-signup.php is a blank page
Xevo
Participant1. Yes, the problem will be solved, unless offcourse you don’t have member registration on in the wpmu settings.
2. It could affect the wpmu plugins that use the wp-signup.php page, just try and if some plugins stop working or give a error, ask the developer if he can fix it.
November 6, 2009 at 11:13 pm #56119Brajesh Singh
Participanthey
Sorry ,It is there but it is outside the code block(gray area),seems my keyboard played wrong with me
,so it is not showing in the gray code area.If you are copying the gray code only ,add an extra ‘} ‘ ,as suggested by nexia .Or if you copy upto oneline below the code block in my post ,that ‘}’ is included
November 6, 2009 at 10:30 pm #561155280425
InactiveOh man I feel embarrassed!
Am I supposed to edit my_custom_url ? ^.^
November 6, 2009 at 10:25 pm #56114Jean-Pierre Michaud
Participantthere is a missing ” } ” that is not shown… add one at the end of the code to make it work
November 6, 2009 at 10:25 pm #56113Lriggle
ParticipantI haven’t tried it yet, I’ll do that when I get home this evening.
Mangaa: did you use both the grey blocks in Brajesh’s post?
November 6, 2009 at 9:42 pm #561055280425
InactiveUsing this method, you can actually modify lots of other links! Very helpful. Thanks Brajesh!
*edit: Quite not working yet. Gives me
Parse error: syntax error, unexpected $end in /home/domain/public_html/wp-content/themes/bp-sn-parent/functions.php on line 81
Did I add this on a bad line or something?
November 6, 2009 at 9:38 pm #56104Brajesh Singh
Participanthi,yes, you can.
Put this code in your current themes functions.php and it will make it work.
add_filter("site_url","my_custom_register_url",10,3);
function my_custom_register_url($url, $path, $orig_scheme)
{
if($orig_scheme=
"login")
{
if($path=
"wp-login.php?action=register")
return get_option('siteurl')."/register";
}
return $url;
}
Let me know it worked for you or not
November 6, 2009 at 9:29 pm #56103Donnacha
ParticipantIt would be really good to see some sort of integrated video commenting – I believe that, for certain use cases, video commenting could be extremely useful but, so far, it has been hampered by clueless implementations (Seesmic, Viddler) which forced users to jump through registration hoops before they can actually record their message, killing the medium before it even had a chance to catch on.
As far as I can see, Kaltura does not currently offer any sort of video commenting but I think it would be a really could fit with the way in which you are trying to push the communal aspects of video.
November 6, 2009 at 8:53 am #56054In reply to: How to turn Confirm Email Off?
ousep
ParticipantHere’s what I’m trying to do…
I’d like to hook into bp_after_registration_submit_buttons to run a query that will update wp_signups in the database.
If that function does what i think it does, I would set ‘activated’ to the same as ‘registered’ and set ‘active’ to 1. I’m guessing there’s more involved, like copying the ‘meta’ to wp_usermeta, and also adding their details to wp_users.
Now here’s the tricky bit: how do I hook into bp_after_registration_submit_buttons?
And, how do I get _any_ identifying value for the user who’s just registered?
November 6, 2009 at 6:51 am #56051In reply to: WP-Super-Cache Question
levin
ParticipantTested in different contain variation with turn-half-on supercache and turn off, site wide activity RSS is completely lost control while supercache is on.
Post new blog post: work fine
Post new forum topic/reply: random hours delay
New user registration: disappeared
When turn off supercahce, everything back to normal, i tried to exclude is_feed and several feed, /feed/, /activity/feed/ but no effect at all.
I’m using BP1.1.2 and 2.8.5.2 mu and supercache 0.9.7
-
AuthorSearch Results