Running into a contrib module error here. When I pull up the registration page I see the pre-filled facebook registration iframe (http://screencast.com/t/Z6JxJhsq). When I submit the form I get the facebook registering popup, and upon OK'ing that it redirects to a non-populated Drupal-style login (http://screencast.com/t/JiQp1voru). Any ideas?

Comments

joshuabud’s picture

Do you have it set to create local account upon app authorization? http://screencast.com/t/I1nI7MN3wWK That should do it.

elliotttt’s picture

I'm running into the exact same issue, and have the exact same settings referenced above.

elliotttt’s picture

Update on this, I was testing this in Chrome on Mac OS, trying it in firefox seemed to work okay... any ideas?

elliotttt’s picture

StatusFileSize
new52.06 KB

Hmm... working in chrome now too... attached is my current configuration:
It seems unchecking validate session allowed it to work.

Anonymous’s picture

Here 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.

Anonymous’s picture

Side note: The Registration Module (fb_registration.module) does not correctly identify the FB Connect and FB User modules as dependancies.

Dave Cohen’s picture

Does #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?

Anonymous’s picture

Status: Active » Needs work

Found 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.

Dave Cohen’s picture

Title: Facebook Registration Redirects to Drupal Registration on post » Facebook Registration fails if username is not unique
Version: 6.x-3.0-rc8 » 6.x-3.x-dev
Status: Needs work » Active

Nice 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.