Wiki

Articles tagged with "authentication", sorted by ratingX
Displaying 1-10 of 19 result(s).

How to write secure Yii applications

Created about a year ago by François GannazHow-tos11 comments – viewed 68,463 times – ( +78 )
warning: While this security guide tries to be quite complete, is not exhaustive. If security matters for you, you ought to check several other references.

Implementing a User Level Access System

Created 2 years ago by Antonio RamirezTutorials9 comments – viewed 26,135 times – ( +27 )
I would like to provide you a quick tip on how to implement user level access to your Yii applications.

Authenticating against phpass hashes with Yii

Created about a year ago by Da:SourcererHow-tos18 comments – viewed 15,660 times – ( +25 )
The Portable PHP password hashing framework allows advanced password hashing offering increased security over simple MD5- or SHA1-hashed passwords. phpass is already in use in some larger projects such as WordPress (since v2.5), Drupal 7 and phpBB 3.

Simple RBAC

Created about a year ago by hasanaviTutorials11 comments – viewed 31,801 times – ( +32 / -1 )
If you need simple Role based access control without the long RBAC process then this article is just for you. Lets jump to the point.

How to add more information to Yii::app()->user

Created 4 years ago by qiangTutorials1 comment – viewed 66,719 times – ( +18 )
By default, the expression Yii::app()->user returns a CWebUser application component which represents the information that are closely related with the current user. Some information can be persistent throughout the current user session. For example, CWebUser already comes with a name property that stores the username of the current user.

Use crypt() for password storage

Created 5 months ago by fsbTutorials11 comments – viewed 14,765 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.

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.

Module based login

Created 2 years ago by suriyansureshTutorials6 comments – viewed 32,322 times – ( +14 )
If you want to add module based login to a site without using RBAC, please follow these guidelines.

How to use ldap in UserIdentity for authentication

Created 3 years ago by BeerSercTutorials10 comments – viewed 20,039 times – ( +11 )
Yii does not have an LDAP class itself, but its very easy to implement LDAP in the stock UserIdentity class.

Introducción al control de acceso basado en roles (RBAC)

Created 2 years ago by Juan CalvoTutorials4 comments – viewed 20,809 times – ( +16 / -1 )
Todos los que hemos empezado a utilizar Yii para crear aplicaciones Web, nos hemos dado de bruces cuando hemos intentado poner a funcionar el RBAC (acceso de control basado en roles).