Wiki

Articles tagged with "password"X
Displaying 1-6 of 6 result(s).

Kickstart development with Yii-App

Created 4 months ago by Chris83How-tos20 comments – viewed 9,730 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.

Use crypt() for password storage

Created 5 months ago by fsbTutorials11 comments – viewed 15,280 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,100 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.

Secure password hash storage and a Yii helper extension

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

Model password confirmation field.

Created about a year ago by twisted1919How-tos5 comments – viewed 24,419 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.

Force a User to Change Their Password (ChangePasswordFilter)

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