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
332 Views Asked by Rich Standbrook At
1
There are 1 best solutions below
Related Questions in KOHANA-3
- How to use INSTR with Kohana ORM?
- "Unable to find a route to match the URI: xxxxx/index.php"
- Kohana Route using wrong pattern for URL/subject
- How to pass data from Kohana controller to JQuery?
- Kohana 3 - Save model to DB with relation belongs_to
- Kohana 3.0 Using parameters in default route
- Is there any substitute method in laravel for before() and after() methods of kohana?
- Knet Not working with Kohana in PHP
- ORM::factory is giving uncaught exception in Kohana
- crontab not working in kohana freamwork
- Redirect to incorrect URL, Kohana 3.0.9
- Using Kohana Remote::get throws exception on http 500, but I need the response text
- Kohana 3.3 send parameter to default action
- How do raw query in kohana freamwork
- Kohana 3.1 ORM DB Query
Related Questions in KOHANA-AUTH
- Using KOHA REST API to get patron's checked-out book name
- How to make when user click back button, will be appear document expired
- how to get multiple checkbox value in "KOHANA FRAMEWORK"?
- Enforcing strong passwords in Kohana Auth
- Why do not the session Kohana 3.3?
- how to establish database connection in kohana mvc framework
- Kohana authenticate user with token
- Kohana/JQuery Auth access issue
- Kohana 3.3 check old password is correct before changing password
- Error: Declaration of Auth_ORM_Driver in Kohana 2.3.4
- Auth::instance returning false when logging a user in
- Kohana Auth Custom Driver, model user?
- how to sign up with different fields in kohana
- Kohana 3.3: Auth Module - Able to login with false password
- Add table data to the logged in user
Related Questions in KOHANA-3.2
- kohana 3.2.3.1 route not working when controller is in a sub folder
- Trying to send a tiff file in php to client but the file is damaged after download
- Auth in Kohana 3.2 doesn't login users after migration to another hosting
- How to changes the default URL format in kohana 3.2.
- Cascade Update or Delete - kohana
- Synchronous XMLHttpRequest on the main thread is deprecated in min.js 1.6.3
- How to redirect the URL/public/language to URL/public
- How to changes the Route::set in kohana 3.2
- Need to convert the floating values to integer format below the condition in php
- Kohana 3 - Redirect to other localhost project
- Sub-request response stops the initial request in Kohana 3.2?
- Error reading Excel file using Spout
- Creating routes for controllers in subdirectories in Kohana 3.2
- kohana ajax controller sessions are not working with auto render
- Kohana 3.2 controllers in classes/controllers/<subfolder>/<subfolder>
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 # Hahtags
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.