I am trying to upgrade my app to Kohana 3.2 but I'm having trouble because all my users are in the database with passwords encrypted by Auth from Kohana 3.0. It looks like 3.2 does it differently. Can I configure 3.2 to use the same encryption?
Can I use kohana 3.0 Auth module with 3.2
331 Views Asked by Rich Standbrook At
1
There are 1 best solutions below
Related Questions in KOHANA-3
- Kohana 3.1 ORM DB Query
- Kohana Framework: way to load config using absolute file path
- Kohana 3. Environment test page
- Kohana framework-cascade file system. How to add folder to this cascade chain?
- get file like pics and media through controller
- Kohana 3.3 - dynamic menu creation with rights management possible?
- Kohana 3 Command line output buffering?
- Kohana ORM custom methods in models
- Access parent object in method
- Kohana 3 - How to I18n-ing Form fields that are populated by the database?
- Request::$controller in Kohana
- What docs/tutorials/guides are there that a Kohana newbie should know about?
- $_GET array is empty
- Ko3: Change Database Config with Model Params
- Helping Kohana 3 ORM to speed up a little
Related Questions in KOHANA-AUTH
- Auth::instance returning false when logging a user in
- 3.1 Auth working example of login/logout controller methods?
- Kohana Auth Custom Driver, model user?
- Kohana auth login fails every time
- kohana registration returns error
- Kohana orm validation
- Kohana Auth login with email not username
- Kohana 3.2 Auth ORM: I can't seem to stay logged in with the "remember me" option set
- Can I use kohana 3.0 Auth module with 3.2
- Kohana 3 auth module, how to configure user table and fields
- Error when using Auth with ORM driver kohana 3.3.0
- kohana Auth with automodeler ORM
- Kohana Auth module login system
- Error: Declaration of Auth_ORM_Driver in Kohana 2.3.4
- Why do not the session Kohana 3.3?
Related Questions in KOHANA-3.2
- Getting errors when access one file using Kohana Framework
- Redirect 404 Page using Kohana Framework
- kohana 3.2.3.1 route not working when controller is in a sub folder
- Kohana 3.2 ORM many-to-many - wrong field names
- What is a minimal, complete example of pagination in Kohana 3.2?
- Proper way to handle pivot data operations (via has_many "through")
- kohana won't display errors, gives blank page
- Kohana 3.2 has_one model not loaded
- Kohana: What is the best way to serve robots.txt?
- Kohana 3.2 Auth ORM: I can't seem to stay logged in with the "remember me" option set
- Kohana 3.2 session expires too soon, shorter expirations work as expected
- Can I use kohana 3.0 Auth module with 3.2
- Kohana installation: Logs Directory is not writable. Can't change the root of the directory in the bootstrap.php
- How to set CURL options when using Kohana Request
- Kohana 3.2 relationship - Joins
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is no simple way for this. Kohana 3.2 uses
hash_hmac()instead ofhash+salt. Also there a changes in login workflow (for example,Model_Userin 3.2 doesnt contain any login logic). You will need to copy a lot of code from 3.0 to 3.2, I dont think its a good idea.What about sending emails with a password recovery link? Old password will be broken, but user can simply redefine password. And dont forget to logout all "remembered" users (somewhere in your basic controller,
before()method is perfect place for it).PS. Sorry for my english, Its not my native language.