Active
Project:
Drupal for Facebook
Version:
6.x-3.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
21 Feb 2011 at 16:54 UTC
Updated:
26 Nov 2016 at 19:09 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
joshuabud commentedDo you have it set to create local account upon app authorization? http://screencast.com/t/I1nI7MN3wWK That should do it.
Comment #2
elliotttt commentedI'm running into the exact same issue, and have the exact same settings referenced above.
Comment #3
elliotttt commentedUpdate on this, I was testing this in Chrome on Mac OS, trying it in firefox seemed to work okay... any ideas?
Comment #4
elliotttt commentedHmm... working in chrome now too... attached is my current configuration:
It seems unchecking validate session allowed it to work.
Comment #5
Anonymous (not verified) commentedHere are my current settings:
http://screencast.com/t/qmvv0UmfSs
http://screencast.com/t/ScnnEUD8Q
http://screencast.com/t/8MJEHGvt8kH
Currently when I try to register I get the following screen: http://screencast.com/t/DgoyqZ8iI - The username is filled, but highlighted red. Also, the password is highlighted red. However the user seems to be registered as they shown in the users table, and can login after that.
Comment #6
Anonymous (not verified) commentedSide note: The Registration Module (fb_registration.module) does not correctly identify the FB Connect and FB User modules as dependancies.
Comment #7
Dave Cohen commentedDoes #1000694: Allow site registrations using Facebook's new registration tool patch #13 solve this problem?
Sounds like drupal validation is failing. You should see a form error when that happens. Maybe if you refresh the page the error will be visible?
Comment #8
Anonymous (not verified) commentedFound the issue, apparently if there exists a user with the same name the registration will fail to redirect properly. The user is still created with a _2 appended to the username, but it fails at the registration screen.
Comment #9
Dave Cohen commentedNice find. Two problems really:
1) user.module validation is rejecting the drupal_execute(). fb_registration.module should change the name before calling drupal_execute().
2) fb_user.module is creating a new user because the app is authorized, but without the other details from the registration form.