Wiki

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

Model password confirmation field.

Created about a year ago by twisted1919How-tos5 comments – viewed 24,106 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 hash storage and a Yii helper extension

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

Use crypt() for password storage

Created 5 months ago by fsbTutorials11 comments – viewed 14,770 times – ( +16 )
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.

Secure password hashing with bCrypt

Created about a year ago by waitforitHow-tos3 comments – viewed 11,010 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.

Kickstart development with Yii-App

Created 3 months ago by Chris83How-tos20 comments – viewed 9,560 times – ( +16 )
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.

Force a User to Change Their Password (ChangePasswordFilter)

Created about a year ago by waterloomattTutorials1 comment – viewed 8,595 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.