vtiger Forum Index vtiger
The Honest Open Source CRM
 

How to reset Vtiger password for a User?
Click here to go to the original topic

 
       vtiger Forum Index -> General Discussions
Previous topic :: Next topic  
Author Message
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.
Back to top  
 
       vtiger Forum Index -> General Discussions
Page 1 of 1


Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.15 © 2001, 2002 phpBB Group