Hey Bernd,
Just want to apologize that I haven’t got a chance to look through your pull request earlier.
Can you get or gtalk or skype sometime so we can discuss this? If not just email me.
Thanks,
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
February 10, 2010 7:00pm
Subscribe [287]#391 / Jun 07, 2010 10:10pm
Hey Bernd,
Just want to apologize that I haven’t got a chance to look through your pull request earlier.
Can you get or gtalk or skype sometime so we can discuss this? If not just email me.
Thanks,
#392 / Jun 08, 2010 9:15am
Hi,
I’am testing IonAuth with Internet Explorer.
When I login then I refresh the page I lost the session. There are some issue related to this?
Best Regards,
#393 / Jun 08, 2010 12:11pm
Sinclair,
Are you using DB sessions? If so, what settings are you using?
#394 / Jun 08, 2010 12:34pm
Problem solved.
I was getting this perception because of the flash session messages.
Another question. There is any method to get the email or the username of the current session?
Best Regards,
#395 / Jun 08, 2010 12:58pm
Does Any one here has using ionauth and Modular Extensions? When I try using ionauth on Fresh install CI 1.7.2 it work beautifull. but after installing Modular Extensions The ionauth is not working with giving me error on the Controller.php on the libraries that came from The modular Extensions. But the modlar extensions is work just fine.
is it possible to used ionauth on modular extensions?
thanks
#396 / Jun 08, 2010 8:04pm
Sinclair,
$this->ion_auth->get_user()->email or $this->ion_auth->get_user()->username or better yet:
$user = $this->ion_auth->get_user();
echo $user->email;
echo $user->username;#397 / Jun 08, 2010 11:55pm
I`ll try to remove the
$this->data['xxx']$data['xxx']on the auth controller, and the error is missing. Maybe some one has a better solution to integrating this ionauth with Modular Extension.
For Ben Edmunds Thanks for the quick replay and your time sir…. 😊
#398 / Jun 10, 2010 9:38pm
hi all,
how to return username or email to view ?
#399 / Jun 10, 2010 9:56pm
huuray,
$this->ion_auth->get_user()->email or $this->ion_auth->get_user()->username or better yet:
$user = $this->ion_auth->get_user();
echo $user->email;
echo $user->username;#400 / Jun 10, 2010 10:25pm
thanks ben.
#401 / Jun 11, 2010 4:08am
ben,when i try to register using existed email,
the form will not submit.
any idea to output message [the email is existed.]
#402 / Jun 11, 2010 3:01pm
Another question about the Ion Auth…
I need to create users in a Database Procedure, using PlpgSQL language… so I need to understand a litle bit better the table “USERS” and the account creation process.
My firts question, what is the “salt”?
My second question goes to the password storage. I need to generate the password encryption in the Database procedure. What kind of encryption is the Ion Auth using?
I have read some code:
// IP Address
$ip_address = $this->input->ip_address();
$salt = $this->store_salt ? $this->salt() : FALSE;
$password = $this->hash_password($password, $salt);Best Regards,
Sorry my poor english.
#403 / Jun 11, 2010 6:11pm
huuray,
I usually add a validation callback to check the email. I think I’ve posted one a few times on this thread.
Basically you just check $this->ion_auth->email_check($email);
#404 / Jun 11, 2010 6:14pm
Sinclair,
You can look through the hash_password method in the model to see how the encryption is done.
If using stored salts it generates a random salt and then stores that in the users row and then does an sha1 encryption with the salt and the password. But just look through that method for the exact algorithm.
#405 / Jun 11, 2010 9:50pm
btw,where i can find wiki or manual for ion auth?