Facebook connect keeps redirecting me to the registration page
4 posters
Page 1 of 1
Facebook connect keeps redirecting me to the registration page
Hi!
I've a small but annoying problem concerning Facebook login. I've just activated the Facebook connect module, filled it out properly with ID and secret code and now, when I want to sign in using the FB login icon (yes, it's visible), it shows me the FB popup, asking me for my credentials, and after it should resolve the email address together with my username (I guess) equal to my credentials on my site, which are the same on my board as well as on facebook, but instead it continues, exiting the FB login popup and says I'm a new user and should sign up (forumotion page). Now, that's annoying
. Could someone pls explain why I can't bind the existing profile as an admin and founder of www.game-xtreme.com to my FB account?
Thanks in advance for the efforts!
Samantha
EDIT: I've switched the feature off for the time being, for obvious reasons, but I still like to have a sound solution to the problem.
I've a small but annoying problem concerning Facebook login. I've just activated the Facebook connect module, filled it out properly with ID and secret code and now, when I want to sign in using the FB login icon (yes, it's visible), it shows me the FB popup, asking me for my credentials, and after it should resolve the email address together with my username (I guess) equal to my credentials on my site, which are the same on my board as well as on facebook, but instead it continues, exiting the FB login popup and says I'm a new user and should sign up (forumotion page). Now, that's annoying

Thanks in advance for the efforts!

Samantha
EDIT: I've switched the feature off for the time being, for obvious reasons, but I still like to have a sound solution to the problem.
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page
Did you associate your two accounts?
Your forum:
Profile > Preferences
Associate Account With Facebook
New members who use the Facebook Connect to register on your forum will not have to do this, old members will.
Your forum:
Profile > Preferences
Associate Account With Facebook
New members who use the Facebook Connect to register on your forum will not have to do this, old members will.


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Facebook connect keeps redirecting me to the registration page
All it says there is:
Associate your Facebook account : Associate your Facebook account
There's no option, unfortunately.
Associate your Facebook account : Associate your Facebook account
There's no option, unfortunately.
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page
It should be a blue button to press.


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Facebook connect keeps redirecting me to the registration page
Unfortunately, there is none...
Edit: I need to go (sleep). Byes for now, ttyl (few hrs from now)...
Edit: I need to go (sleep). Byes for now, ttyl (few hrs from now)...
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page
Post a screenshot of the Facebook Connect page in the administration panel. Mark out the code parts.


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Facebook connect keeps redirecting me to the registration page
Try using a different theme/skin. Sometimes a theme/skin has errors that causes the buttons to not work/show.


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Facebook connect keeps redirecting me to the registration page
Yeah, right. Took me half a year to get this far to find a bug in a skin. Then, fix the bug in that skin. I'm not gonna change themes. It's Prosilver, default skin.
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page
Could you send me a test account in a private message?


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Facebook connect keeps redirecting me to the registration page
I believe your issue is similar to this one - https://help.forumotion.com/t115526-facebook-login-issue .


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Facebook connect keeps redirecting me to the registration page
Responded to https://help.forumotion.com/t115526-facebook-login-issue#784951
Samantha
EDIT: Seen Runawayhorses' https://help.forumotion.com/t111631-2555-facebook-invite-not-loading . This has been an ongoing issue for half a year now, so it seems. Hint: Reliable sources say Forumotion needs to update the Facebook connector, since facebook.com has switched to a secure channel server environment. So, question is why wait so long for it to update?
Samantha
EDIT: Seen Runawayhorses' https://help.forumotion.com/t111631-2555-facebook-invite-not-loading . This has been an ongoing issue for half a year now, so it seems. Hint: Reliable sources say Forumotion needs to update the Facebook connector, since facebook.com has switched to a secure channel server environment. So, question is why wait so long for it to update?
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page

Samantha.
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page
Which profile tabs are you referring to?


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Facebook connect keeps redirecting me to the registration page
It's this JS:
$(function() {
'MIT License - Bilde Designs';
function init_ajax_profile_tabs() {
$('#<b style="color:#aa0000" class="coloradmin">tabs</b> li a').click(function(e) {
e.preventDefault();
var href = this.href;
if (history.pushState) {
history.pushState(null, null, href);
}
$('#main-content').load(href +' #main-content', function() {
init_ajax_profile_tabs();
});
});
}
init_ajax_profile_tabs();
});
It's ruining a lot on my forum, that includes the Facebook controls.... The whole problem was gone after disabling this script...
Samantha
www.game-xtreme.com
$(function() {
'MIT License - Bilde Designs';
function init_ajax_profile_tabs() {
$('#<b style="color:#aa0000" class="coloradmin">tabs</b> li a').click(function(e) {
e.preventDefault();
var href = this.href;
if (history.pushState) {
history.pushState(null, null, href);
}
$('#main-content').load(href +' #main-content', function() {
init_ajax_profile_tabs();
});
});
}
init_ajax_profile_tabs();
});
It's ruining a lot on my forum, that includes the Facebook controls.... The whole problem was gone after disabling this script...
Samantha
www.game-xtreme.com
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page
Ok. So this is solved for you?


Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Facebook connect keeps redirecting me to the registration page
It is, except for the fact I could press the facebook invite once only, then it disappeared. Associating and disassociating FB now works properly and logging in through FB is fast.
>> Related to: https://help.forumotion.com/t111631-2555-facebook-invite-not-loading <<
>> Related to: https://help.forumotion.com/t111631-2555-facebook-invite-not-loading <<
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page
SamanthaS wrote:Hi!
I've a small but annoying problem concerning Facebook login. I've just activated the Facebook connect module, filled it out properly with ID and secret code and now, when I want to sign in using the FB login icon (yes, it's visible), it shows me the FB popup, asking me for my credentials, and after it should resolve the email address together with my username (I guess) equal to my credentials on my site, which are the same on my board as well as on facebook, but instead it continues, exiting the FB login popup and says I'm a new user and should sign up (forumotion page). Now, that's annoying. Could someone pls explain why I can't bind the existing profile as an admin and founder of www.game-xtreme.com to my FB account?
Thanks in advance for the efforts!![]()
Samantha
EDIT: I've switched the feature off for the time being, for obvious reasons, but I still like to have a sound solution to the problem.
The same confusion with mine actually. I'm desperate to get off from the hook. It's been 3 days finding the solution. All i need is just to click the facebook log-in and that's it. I have to avail the opportunity since this kind of feature is available already. Thanks.


Btw, my website: http://www.teampddjs.com
Re: Facebook connect keeps redirecting me to the registration page
SamanthaS wrote:It's this JS:
$(function() {
'MIT License - Bilde Designs';
function init_ajax_profile_tabs() {
$('#<b style="color:#aa0000" class="coloradmin">tabs</b> li a').click(function(e) {
e.preventDefault();
var href = this.href;
if (history.pushState) {
history.pushState(null, null, href);
}
$('#main-content').load(href +' #main-content', function() {
init_ajax_profile_tabs();
});
});
}
init_ajax_profile_tabs();
});
It's ruining a lot on my forum, that includes the Facebook controls.... The whole problem was gone after disabling this script...
Samantha
www.game-xtreme.com
did you add this script?
kirk- Forumaster
-
Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn
Re: Facebook connect keeps redirecting me to the registration page
Hi Kirk, yes I did. It's Bilde's (Avacweb). I've switched it off, and the facebook plugin is visible and working now and associating is possible, however, the facebook invite doesn't work in the profile pages. That button was visible only once and one should expect it to load your friends list from Facebook, but it doesn't. Just that one time I clicked it, it was gone after.
Guest- Guest
Re: Facebook connect keeps redirecting me to the registration page
SamanthaS I received your PM about how we had similar issues, and this is not the case for me as I do not use AJAX tabs from Blide 


» Facebook Login is redirecting to registration
» facebook button to connect to facebook page
» Facebook connect
» facebook connect doesn't work + facebook share button
» If i don't have my own domain how can i connect with facebook connect
» facebook button to connect to facebook page
» Facebook connect
» facebook connect doesn't work + facebook share button
» If i don't have my own domain how can i connect with facebook connect
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum