Asha
Joined: 31 Jul 2007
Posts: 300
|
| Posted: Tue Jul 08, 2008 6:59 am Post subject: How to reset Vtiger password for a User? |
|
|
Assumption: You have access to the vtiger database.
1. Login to the mysql database.
2. Using the following commands on mysql command line :-
Code: use <vtiger_database_name>;
For versions < 5.0.4 :
Code: update vtiger_users set user_password = 'adpexzg3FUZAk' where user_name = 'admin';
For versions 5.0.4 or later:
Code: update vtiger_users set user_password = 'adpexzg3FUZAk', crypt_type = '' where user_name = 'admin';
Note: Replace 'admin' with whichever user_name you want to reset the password for. |
|