Form Login

I have a problem, I included two links in a login form for registration and one for password recovery,

but to redirect the these 2 pages the application asks me to login and I should not do this

Can you help me???I should modify the controller function of login???

Check the controller that answer to the request.

There should be something like




	/**

	 * Specifies the access control rules.

	 * This method is used by the 'accessControl' filter.

	 * @return array access control rules

	 */

	public function accessRules()

	{

		return array(

			array('allow',... ),

			),

			array('deny',  // deny all users

				'users'=>array('*'),

			),

		);

	}




You should modify this permission array in order to allow not authenticated user to perform the action ‘registration’ and ‘password recovery’

Thanks you very much…

I have solved the problem…