BuddyPress won't take in new registers
-
Hi there,
I installed Buddypress but it wont let anyone register. I tried deactivating every plugin except buddypress and WPML for buddypress, checking the “allow anyone to register” box, changing the pages, and it still doesnt work.
Wordpress 4.0
Theme twenty fourteen
Buddypress 2.1.1
Buddypress multilingual 1.5
WPML 3.1.7.2
My site is both in English and Spanish.
Register in English: http://www.pentagrom.com/en/register-2/
Register in Spanish: http://www.pentagrom.com/registrarse/Can someone help me please?
Thanks so much
-
I’m having the same problem and no response yet 🙁
@lolapentagrom
I would start troubleshooting by deactivating Buddypress multilingual 1.5 and WPML 3.1.7.2
and testing registration against each one as you reactivate them. I would venture to say one or both of these two plugins is likely causing your registration issue.What actually doesn’t work? What happens / doesn’t happen?
your case https://buddypress.org/support/topic/buddypress-preventing-registration/ is different…
First of all, thank very much for the super fast response on a Sunday afternoon 🙂
I have tried deactivating those two plugins and trying again against each other and nothing.
What happens is that once you fill out all the info and hit “complete sign up” the page just refreshes and the info boxes appear blank again.This happens both in English and in Spanish.
Any idea of what might be happening?
Thanks againDo you get any javascript ( or other ) errors in the developer console?
I dont think I have such thing as a developer console. I’ve googled a bit and I see there are a few developer console plugins. Should I download one and see? Which one do you reccomend?
i get the same issue and when googling i’ve seen it posted around a lot – but a real absence of solutions.
in the js console i get these errors:
Line 1095, Column 4
Pause On Caught Exceptions
Watch Expressions
Call StackAsync
Not Paused
Scope Variables
Not Paused
Breakpoints
No Breakpoints
DOM Breakpoints
XHR Breakpoints
Event Listener Breakpoints
ConsoleSearchEmulationRenderingPreserve log
.
Uncaught ReferenceError: pm is not defined (index):1095
GET http://focallocal.org/register/tab.css/ (index):1171
First Ever Page View of this Page ?f=wp-content/plugins/landing-pages/shared/assets/global/js/jquery.cookie.js,wp-content/plugins/lan…:72
Uncaught ReferenceError: tabs_shortcode is not defined (index):1280
Session Active ?f=wp-content/plugins/landing-pages/shared/assets/global/js/jquery.cookie.js,wp-content/plugins/lan…:72
Page View Saved ?f=wp-content/plugins/landing-pages/shared/assets/global/js/jquery.cookie.js,wp-content/plugins/lan…:72
.note: this is with plugins active, but the problem remains when its only BP active
site is: focallocal.org
@focallocal, please don’t double post.
Answered here: https://buddypress.org/support/topic/register-broken-page-refreshes-seen-problem-posted-often-but-no-solutions/I don’t particularly recomend any specifically but I try to test stuff in the major browsers so they all come in useful.
If you use Internet explorer you can press F12 to open up ‘developer tools’ ( also on the tools dropdown )
You can also press F12 in google chrome: see https://developer.chrome.com/devtools
Mozilla Firefox doesn’t have a built in developer tools. I use firebug ( free ), which has to be installed separately. See https://www.getfirebug.com/
…
@aces
Maybe you overlooked it but Firefox does have built in developer tools in the menu under Tools/Web Developer but firebug is a great and more user friendly.This is what appears when I press F12 while in my wp admin dashboard:
6Consider using ‘dppx’ units, as in CSS ‘dpi’ means dots-per-CSS-inch, not dots-per-physical-inch, so does not correspond to the actual ‘dpi’ of a screen. In media query expression: print, not all, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) (index):1
Consider using ‘dppx’ units, as in CSS ‘dpi’ means dots-per-CSS-inch, not dots-per-physical-inch, so does not correspond to the actual ‘dpi’ of a screen. In media query expression: print, not all, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi)(how can i attach a screenshot here?)
After lots of searching I finally got round the problem of BP/WP not taking you to the registration page by adding the following file into wp-content/plugins/
bp-custom.php
<?php
/**
* Disables BuddyPress’ registration process and fallsback to WordPress’ one.
*/
function my_disable_bp_registration() {
remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );
remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ );
}
add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ );add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”);
function firmasite_redirect_bp_signup_page($page ){
return bp_get_root_domain() . ‘/wp-signup.php’;
}This dispenses with BP’s registration system and falls back to the standard WP registration.
would that not remove many of the buddypress features available to members who sign up to your site?
bump
not just me asking this, i’ve looked on forums all over and it seems to be a common bug. as mine was a freash BP+WP install and isnt theme or plugin related i would speculate that maybe its related to a conflict server side, although i have no idea what it could be
i tried the code to disable BP register and that causes the whole site to load a blank page. doesnt seem to in BP 4.0 :/
@bphelp hello? Please dont abbandon us! We love your plugin!
I’m having the exact same issue. Can someone please help?
@bphelp Creating new groups doesnt work either…Please help!!
i tried repairing the WP database but it still wont work
- The topic ‘BuddyPress won't take in new registers’ is closed to new replies.