Questions tagged [kohana-auth]

The Kohana Auth module provides an easy-to-use API for basic website authentication (users) and authorization (roles)

69 questions
0
votes
4 answers

How to get an old password in ORM?

I need an old password (not hashed) for sending to user but doesn't see a good idea? I read the documentation and there is only a method where I can get a hashed password. What can I do for getting real password?
Smash
  • 513
  • 5
  • 23
0
votes
1 answer

Kohana 3 auth username as number

I want to use numbers as username in Kohana Auth. For example, username 100001? While adding new user Kohana returns me error: ORM_Validation_Exception [ 0 ]: Failed to validate array Is is possible to user numbers as username in Kohana?
0
votes
2 answers

Multiple Auth drivers in kohana3.2

I'm working on a project where I'm trying to implement authentication against external user base for customers, this seems to be working correctly. Recently there has been added another requirement that some people (not present in the aforementioned…
bjauy
  • 929
  • 16
  • 22
0
votes
1 answer

kohana Auth with automodeler ORM

New to kohana here. I have a task from my internship to make login system with kohana framework 3.2 . I also did it to insert,update and delete stuff with auto modeler ORM. I have some trouble now with kohana auth. I already have the database…
0
votes
1 answer

Kohana Auth module login system

I recently started working at a company that uses Kohana with the Auto-modeler module and k0stache module. And I am currently making a login system but I can find some decent information about using the Auth in combination with Auto-modeler and…
0
votes
1 answer

I can't log in in Kohana 3.2 ORM Auth module?

Well, thats a trouble. The code is simple: public function action_index() { $post = $this->request->post(); if ($post) { // if I type it like this, manually - it will work $success =…
Victor Czechov
  • 237
  • 1
  • 6
  • 12
0
votes
1 answer

Can we globaly on or off XSS filter in kohana v 3.0?

Can we globally set on or off XSS filter in Kohana v 3.0? I have the following search $config['global_xss_filtering'] = TRUE; it should globally activate xss by checking, but it's not working.
Jabeen
  • 357
  • 2
  • 4
  • 15
0
votes
1 answer

Kohana Authlite - not allow two users logged in ith the same credentials the same session

i am using authlite authentication module for my kohana 3 website. Now it is possible for two users to login using the same credentials, in the same session. i don't want this to happen for security reasons. is there any possibility for me to avoid…
dana
  • 5,168
  • 20
  • 75
  • 116
-1
votes
2 answers

Kohana 3 Auth in IE

I'm finding I can't log in to my Kohana site through IE. (just IE, works fine everywhere else) It's validating, so much as, it knows if you get your username and password wrong, but its not creating the session. I've added to:…
1 2 3 4
5