Hi friends,
I installed and Configured TestLink 1.9.2 and it's Working fine ..
Now i want to change the Authentication of Users through Email... that
means instead of using login id as some name i want to use Email id of that User?
I cann't create user with their login as email id it's showing The Login Name contains invalid characters!
Any help would be very very appreciated.
Thanks.
How to Make Testlink Authentication using User's mail id?
Moderators: Amaradana, TurboPT, TL Developers
-
- TestLink user
- Posts: 2
- Joined: Wed Jul 27, 2011 10:49 am
Re: How to Make Testlink Authentication using User's mail id
The Login name should accept only alphabets.. It should not allow special characters like @,. in Testlink.
Re: How to Make Testlink Authentication using User's mail id
Validation of user names is configurable. See config.inc.php (excerpt below). However I'm not sure about whether special character are "safe" for the db. Use with caution.
/** Validating new user login names */
$tlCfg->validation_cfg->user_login_valid_regex='/^[\w \- .]+$/';
/** Validating new user login names */
$tlCfg->validation_cfg->user_login_valid_regex='/^[\w \- .]+$/';