Its in config.php -> $config[‘sess_encrypt_cookie’] = FALSE;
Anyhow! I do have a question. I really like Ion Auth and I am wondering if it would be hard to hook in the following: Google, Facebook, OpenID and possibly other authentication methods.
Obviously that is not a base thing, but it is something that makes users register quicker and more often in my experience and I want to stimulate that as much as possible.
I’m not sure about right thread, so write here.
I do need extend Ion_auth (library), that is located under the application/libraries. I tried to use standard approach: to make a php lib as MY_Ion_auth.php and class name MY_Ion_auth (located at the same place, under the application/libraries).
But when i try to use it in controller, i get an error: “Unable to load the requested class: Ion_auth”. Seems, it’s not a right way.
I also tried to use a call of library load as $this->load->library(‘MY_Ion_auth’), but it made a mess, as i need to change all the lines where ion_auth is used inside a controller.
Is there some more elegant way to do this? Can someone assist with this issue?
@crendel : sorry can’t help about that, maybe someone else will
I would need some advice about a problem i had with my app, ion_auth and firefox
It often log me out without asking then i sometimes must restart firefox to be able to login again
Maybe someone has meet similar problem before ? I can’t say if it’s due to firefox only or due to a bad config (that i suspect)
any suggestion is welcome
I use the latest downloadable ion_auth version from repository and the latest codeigniter v2x
firefox 10, xp, wamp
question: has anyone here created a brute_force plugin for Ion Auth? i.e. if user X has Y login attempts, then lock the account and send them an email to unlock?
I would need some advice about a problem i had with my app, ion_auth and firefox
It often log me out without asking then i sometimes must restart firefox to be able to login again
Solved, seems to be a know bug in codeigniter database session handling.
ID is regenerated too fast, it breaks.
I fixed it by installing CI Native Session and no more random disconnecting search the forum for more infos
I have used Ion Auth in my project and I want to customize user table but I have not understood yet.
please show me how to change it or where i can find a proper post in order to solve my problem.
2) create new config file called email.php, with the following content:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/* | ------------------------------------------------------------------------- | Email | ------------------------------------------------------------------------- | This file lets you define parameters for sending emails. | Please see the user guide for info: | | http://ellislab.com/codeigniter/user-guide/libraries/email.html | */ $config['protocol']='smtp';
I downloaded Ion Auth library. I’m very new to codeigniter and need a little guidance using your library. Think of my site as being similar to craigslist.
I have 4 types of users
Listers- people who list ads
Viewers - People who view ads
One- Time - Listers (They dont have a subscription, they can only post one ad (pay as you go type thingy)
Admin - activate all of the above
Question - how do I set up these different users——?