CodeIgniter Forums
FreakAuth Light - validation errors - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: FreakAuth Light - validation errors (/showthread.php?tid=23092)



FreakAuth Light - validation errors - El Forum - 09-30-2009

[eluser]skewbie74[/eluser]
Hi

I have implemented FreakAuth Light as my user registration app for my CI site. However, when I try to create a new user through the Admin portalI am getting the following errors even though neither the username nor email address exist.

username:
The user_name is already in use.

e-mail:
A user with this e-mail has already registered. If you have forgotten your login details you can get them here.

My Vaildation Rules for Registration are as follows and you can see I have even tried removing the duplicate_check for each one but still no joy:

Code:
// REGISTRATION
//$config['FAL_user_name_field_validation_register'] = $config['FAL_user_name_duplicate_validation'];
$config['FAL_user_password_field_validation_register'] = $config['FAL_password_required_validation'];
// $config['FAL_user_email_field_validation_register'] = 'trim|required|valid_email|xss_clean|email_duplicate_check';
$config['FAL_user_email_field_validation_register'] = 'trim|required|valid_email|xss_clean';
$config['FAL_user_country_field_validation_register'] = $config['FAL_country_validation'];

Any suggestions would be most appreciated.

Thanks in advance

Steve.