Wiki

Articles tagged with "password", sorted by ratingX
Displaying 1-6 of 6 result(s).

Use crypt() for password storage

Created 6 months ago by fsbTutorials11 comments – viewed 17,740 times – ( +17 )
There Is Now A cpasswordhelper Class In system.utils at GitHub that provides an API to simplify the use of crypt() for password storage. While this wiki article remains valid, it will in due course be rewritten to refer to the new class as well as explain how it works.

Kickstart development with Yii-App

Created 4 months ago by Chris83How-tos20 comments – viewed 10,473 times – ( +17 )
I recently created a project called Yii-App on GitHub to kickstart my development of smaller Yii applications. The main goal of the project is to provide a ready-to-use application template that includes my bootstrap extension and many other useful extensions. After reading this article you will be able to use this project as a starting point for all of your Yii projects.

Secure password hash storage and a Yii helper extension

Created about a year ago by fsbTutorials5 comments – viewed 17,743 times – ( +14 )
This article was rewritten as the README of the Randomness GitHub repo

Force a User to Change Their Password (ChangePasswordFilter)

Created about a year ago by waterloomattTutorials1 comment – viewed 8,970 times – ( +14 )
Sometimes you need to force a user to change their password after x number of days. This article describes how to implement this using a filter, ChangePasswordFilter.

Model password confirmation field.

Created about a year ago by twisted1919How-tos5 comments – viewed 25,926 times – ( +7 )
I had some troubles with the password confirmation field for when adding updating user records, so i thought that i should share the way i got it working.

Secure password hashing with bCrypt

Created about a year ago by waitforitHow-tos3 comments – viewed 11,539 times – ( +6 )
In this article I will show you how to implement a secure password hashing mechanism in your Yii projects using a bCrypt class.