Welcome Guest, Not a member yet? Register   Sign In
Tank Auth with Facebook Connect Authentication
#27

[eluser]Ted S[/eluser]
Made a couple hacks to make the process a little smoother and log a user in after registering. As of right now this only works with core registrations as the Facebook & Twitter systems seem to a better job with this.

Find:
Code:
if (!is_null($data = $this->tank_auth->create_user(

Right after that statement is a // success comment. Add the following below it and before the email / redirect rotuines:

Code:
// success --> log them in
$this->session->set_userdata(array(
'user_id'    => $data['user_id'],
'username'    => $data['username'],
'status'    => STATUS_ACTIVATED
));

$this->users->update_login_info(
$data['user_id'],
$this->config->item('login_record_ip', 'tank_auth'),
$this->config->item('login_record_time', 'tank_auth'));

You should only use this if a registration is considered active immediately. Those with activation emails and similar settings will want to keep things as is.

If you want to pass the remember me cookie you can do that as well. I omitted it as it's a first sign in which is generally treated as short term.


Messages In This Thread
Tank Auth with Facebook Connect Authentication - by El Forum - 03-21-2011, 09:54 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-22-2011, 08:36 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-22-2011, 05:44 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-23-2011, 01:06 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-23-2011, 01:08 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-23-2011, 05:03 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-24-2011, 04:04 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-24-2011, 09:40 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-25-2011, 04:44 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-26-2011, 11:20 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-28-2011, 07:50 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-28-2011, 09:12 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 03-28-2011, 09:14 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 04-15-2011, 09:13 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 04-15-2011, 08:32 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 04-16-2011, 06:16 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 04-17-2011, 04:15 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 04-20-2011, 07:38 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 04-21-2011, 07:32 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 04-21-2011, 08:11 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-05-2011, 05:42 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-05-2011, 06:18 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-06-2011, 08:37 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-19-2011, 02:40 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-19-2011, 02:36 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-19-2011, 11:24 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-21-2011, 01:35 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-21-2011, 01:58 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-26-2011, 12:26 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-27-2011, 02:39 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-27-2011, 03:15 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-28-2011, 08:20 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 05-31-2011, 02:18 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-06-2011, 08:50 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-07-2011, 05:52 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-09-2011, 02:04 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-09-2011, 06:25 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-09-2011, 07:45 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-10-2011, 07:22 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-10-2011, 07:28 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-13-2011, 02:29 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-13-2011, 07:44 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-13-2011, 08:06 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-14-2011, 08:43 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-21-2011, 01:05 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-22-2011, 07:13 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-22-2011, 10:01 AM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-22-2011, 11:40 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-22-2011, 11:52 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 06-28-2011, 01:06 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 07-22-2011, 01:37 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 08-04-2011, 02:52 PM
Tank Auth with Facebook Connect Authentication - by El Forum - 02-21-2012, 09:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB