Skip to content

Instantly share code, notes, and snippets.

View asadali3210's full-sized avatar

asadali3210 asadali3210

View GitHub Profile
@asadali3210
asadali3210 / x2crm-reset-admin-password-mysql-query
Created April 15, 2018 19:57
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>';