I'm trying to make this module work with a heavily customized site. As of right now it connects to janrain and then ends up back at my register page, but none of the fields are filled out.
What is the process supposed to be and how is it that the join form submits itself automatically when it works (I haven't been able to find code for this, but it seems that that's what it does when the module is working properly)
Thanks!

Comments

geokat’s picture

In rpx_core.pages.inc, in rpx_token_handler(),
drupal_execute('user_register', $form_state) is called. The form is
altered in rpx_core_form_alter (rpx_core.module).

cutcopypaste’s picture

thanks that helps a lot!

looking around line 180 of rpx_token_handler(), I'm not sure where $form_state is supposed to get its other values. I see $form_state['values']['op'] being assigned, but where is form_state['user'] supposed to be populated? (for me it is not at all, even though rpx_data seems properly filled out)