Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asadali3210/5d5f234bfc0fe35d5f461e207591785f to your computer and use it in GitHub Desktop.
Save asadali3210/5d5f234bfc0fe35d5f461e207591785f to your computer and use it in GitHub Desktop.
How To Reset Admin Password in an X2CRM Instance Using MySQL Query?
/*
* Topic: Reset Admin User Password By Executing the following Query in X2CRM's MySQL Database
* Website: www.roigap.com
*/
UPDATE x2_users
SET
password = md5('<YOUR_NEW_PASSWORD_STRING_HERE>')
WHERE
username = '<YOUR_X2CRM_USERNAME_HERE>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment