I have uncomment in module loader to load auth, but what I am not understanding is that how to tell auth module that which fields of which table it should use to authenticate? I also didn't find that in userguide in Kohana 3 as I found that userguide for auth module is not present.
So please tell if some one is already using it. And if it use some default fields of some table then how can I modify it?
thanks for reading my question and your effort to answer it.
Here are the steps for you
Auth
module in bootstrap.php (you have done it already)ORM Module
, yes inORM Module
you will findauth-schema-mysql.sql
&auth-schema-postgresql.sql
. Use the one you needed.configure the config file
auth.php
as needed. Below is the configuration I am using.set
Cookie::$salt
inbootstrap.php
. Add this line in yourbootstrap.php
.you are done with
Auth module
configuration ;)As you have configured auth module, obviously you have executed the sql script. You will get
users
,roles
,roles_users
&users_tokens
table created in your database.Now you can change
users
table with adding more column. As you are usingORM
,Model_User
is already there for you which is anORM
:)So this should be all, i believe.